all repos — auth-boilerplate @ 9b74357216ccde9dafe9d4d3faa5e8ace72bab5b

A simple Go web-app boilerplate.

main.go (view raw)

1package main
2
3import (
4	"github.com/birabittoh/auth-boilerplate/src/app"
5)
6
7func main() {
8	app.Main()
9}