Archived
Template
1
0

Initial commit

This commit is contained in:
uberswe
2021-12-12 14:56:13 +01:00
commit 0511f8fbca
1627 changed files with 773292 additions and 0 deletions

16
cmd/base/main.go Normal file
View File

@ -0,0 +1,16 @@
package main
import baseproject "github.com/uberswe/golang-base-project"
// @title Golang Base Project
// @version 1.0
// @description A minimal golang project with user authentication ready out of the box. All frontend assets should be less than 50 kB on every page load.
// @contact.name Markus Tenghamn
// @contact.email m@rkus.io
// @license.name ISC License
// @license.url https://github.com/uberswe/golang-base-project/blob/main/LICENSE
func main() {
baseproject.Run()
}