You've already forked golang-base-project
17 lines
511 B
Go
17 lines
511 B
Go
![]() |
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()
|
||
|
}
|