1// Copyright 2022 The Gitea Authors. All rights reserved.2// SPDX-License-Identifier: MIT34package main56import (7 "context"8 "os/signal"9 "syscall"1011 "gitea.com/gitea/act_runner/internal/app/cmd"12)1314func main() {15 ctx, stop := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM)16 defer stop()17 // run the command18 cmd.Execute(ctx)19}