recommender/main.go

19 lines
265 B
Go
Raw Normal View History

2024-11-06 10:47:56 +00:00
package main
import (
"go-template/cmd"
)
// @title API Docs
// @version 1.0
// @securityDefinitions.apikey ApiKeyAuth
// @in header
// @name Authorization
func main() {
err := cmd.RootCmd.Execute()
if err != nil {
panic(err)
return
}
}