blueprint/main.go

11 lines
168 B
Go
Raw Normal View History

2023-12-19 06:45:28 +00:00
package main
import (
2023-12-22 16:37:12 +00:00
"penahub.gitlab.yandexcloud.net/pena-services/bluepint/cmd"
2023-12-19 06:45:28 +00:00
)
func main() {
2023-12-22 16:37:12 +00:00
cmd := cmd.NewApp(&cmd.Config{Version: "0.0.1"})
cmd.Execute()
2023-12-19 06:45:28 +00:00
}