1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-06-27 16:35:58 +00:00
forgejo-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)
}