Files
loong_runner/main.go
2025-05-09 10:46:03 +08:00

20 lines
358 B
Go

// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package main
import (
"context"
"os/signal"
"syscall"
"git.whlug.cn/LAA/loong_runner/internal/app/cmd"
)
func main() {
ctx, stop := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM)
defer stop()
// 运行命令
cmd.Execute(ctx)
}