Files
act_runner/internal/app/act-cli/main.go
Christopher Homberger 3413919161 update import path
2026-02-22 20:54:58 +01:00

20 lines
294 B
Go

package main
import (
_ "embed"
"gitea.com/gitea/act_runner/cmd"
"gitea.com/gitea/act_runner/pkg/common"
)
//go:embed VERSION
var version string
func main() {
ctx, cancel := common.CreateGracefulJobCancellationContext()
defer cancel()
// run the command
cmd.Execute(ctx, version)
}