├── .atom-build.json ├── .gitignore ├── .goreleaser.yml ├── Dockerfile ├── LICENSE ├── README.md ├── db └── db.go ├── docker-compose.yml ├── go.mod ├── go.sum ├── item.go ├── loadable.go ├── main.go ├── migrations.go ├── routing.go ├── standardfile.json ├── user.go ├── user_test.go └── worker.go /.atom-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/.atom-build.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/README.md -------------------------------------------------------------------------------- /db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/db/db.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/go.sum -------------------------------------------------------------------------------- /item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/item.go -------------------------------------------------------------------------------- /loadable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/loadable.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/main.go -------------------------------------------------------------------------------- /migrations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/migrations.go -------------------------------------------------------------------------------- /routing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/routing.go -------------------------------------------------------------------------------- /standardfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/standardfile.json -------------------------------------------------------------------------------- /user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/user.go -------------------------------------------------------------------------------- /user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/user_test.go -------------------------------------------------------------------------------- /worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectiv3/standardfile/HEAD/worker.go --------------------------------------------------------------------------------