blueprint/main.go

11 lines
140 B
Go
Raw Normal View History

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