Semaphore/cli/main.go

10 lines
107 B
Go
Raw Permalink Normal View History

2016-01-05 00:32:53 +01:00
package main
import (
2021-08-25 22:12:19 +02:00
"github.com/ansible-semaphore/semaphore/cli/cmd"
2016-01-05 00:32:53 +01:00
)
func main() {
2021-08-25 22:12:19 +02:00
cmd.Execute()
2024-03-16 04:18:26 +01:00
}