Archived
Template
1
0
This repository has been archived on 2023-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
golang-base-project/cmd/base/main.go

17 lines
511 B
Go
Raw Normal View History

2021-12-12 14:56:13 +01:00
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()
}