blueprint/main.go

12 lines
169 B
Go
Raw Normal View History

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