├── .env.example ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── database └── postgres.go ├── go.mod ├── go.sum ├── main.go ├── models ├── models.go └── user.go ├── router ├── setup.go └── user.go └── util ├── auth.go └── validators.go /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /database/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/database/postgres.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/main.go -------------------------------------------------------------------------------- /models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/models/models.go -------------------------------------------------------------------------------- /models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/models/user.go -------------------------------------------------------------------------------- /router/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/router/setup.go -------------------------------------------------------------------------------- /router/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/router/user.go -------------------------------------------------------------------------------- /util/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/util/auth.go -------------------------------------------------------------------------------- /util/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfaizan7/go-authentication-boilerplate/HEAD/util/validators.go --------------------------------------------------------------------------------