28 lines
650 B
Go
28 lines
650 B
Go
package main
|
|
|
|
import "base/cmd"
|
|
|
|
// @title Base API
|
|
// @version 1.0.0
|
|
// @description API for base application
|
|
// @termsOfService http://swagger.io/terms/
|
|
|
|
// @contact.name API Support
|
|
// @contact.url http://www.abric.io/support
|
|
// @contact.email support@abric.io
|
|
|
|
// @license.name Apache 2.0
|
|
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
|
|
|
|
// @host localhost:8101
|
|
// @BasePath /
|
|
// @schemes http https
|
|
|
|
// @securityDefinitions.apikey Bearer
|
|
// @in header
|
|
// @name Authorization
|
|
// @description Type "Bearer" followed by a space and JWT token.
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|