initial commit

This commit is contained in:
m.zare
2026-04-10 18:25:21 +03:30
commit 77ca6c34a3
263 changed files with 34470 additions and 0 deletions

27
main.go Normal file
View File

@@ -0,0 +1,27 @@
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()
}