act_runner/main.go

20 lines
358 B
Go
Raw Permalink Normal View History

// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2022-04-27 17:45:53 +08:00
package main
import (
"context"
"os/signal"
"syscall"
2022-04-27 17:45:53 +08:00
"gitea.com/gitea/act_runner/internal/app/cmd"
2022-04-27 17:45:53 +08:00
)
func main() {
ctx, stop := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM)
defer stop()
2022-04-27 17:45:53 +08:00
// run the command
cmd.Execute(ctx)
}