Rename project to actions-sync

This commit is contained in:
Anthony Sterling
2020-07-02 19:36:10 +01:00
commit f7954c5ebf
1249 changed files with 376757 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package main
import (
"context"
"fmt"
"os"
"github.com/actions/actions-sync/cmd"
)
func main() {
ctx := context.Background()
if err := cmd.Execute(ctx); err != nil {
fmt.Fprintln(os.Stderr, err.Error())
os.Exit(1)
}
}