├── .gitignore ├── README.md ├── config.example.json ├── config.test.json ├── database ├── .gitkeep ├── migrations │ └── .gitkeep ├── model │ └── .gitkeep ├── repository │ └── .gitkeep └── seed │ └── seed.go ├── dto └── .gitkeep ├── go.mod ├── go.sum ├── http ├── controller │ └── .gitkeep ├── middleware │ └── .gitkeep ├── route │ └── route.go └── validation │ └── .gitkeep ├── main.go ├── resources └── lang │ └── en-US │ ├── fields.json │ ├── locale.json │ └── rules.json └── service └── service.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-goyave/template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-goyave/template/HEAD/README.md -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-goyave/template/HEAD/config.example.json -------------------------------------------------------------------------------- /config.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-goyave/template/HEAD/config.test.json -------------------------------------------------------------------------------- /database/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/model/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/repository/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seed/seed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-goyave/template/HEAD/database/seed/seed.go -------------------------------------------------------------------------------- /dto/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-goyave/template/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-goyave/template/HEAD/go.sum -------------------------------------------------------------------------------- /http/controller/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /http/middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /http/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-goyave/template/HEAD/http/route/route.go -------------------------------------------------------------------------------- /http/validation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-goyave/template/HEAD/main.go -------------------------------------------------------------------------------- /resources/lang/en-US/fields.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /resources/lang/en-US/locale.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /resources/lang/en-US/rules.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-goyave/template/HEAD/service/service.go --------------------------------------------------------------------------------