├── .gitignore ├── README.md ├── cmd ├── main.go ├── wire.go └── wire_gen.go ├── config └── config.yml ├── go.mod └── src ├── app.go └── controller ├── index_controller.go └── wireSet.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | go.sum 3 | /log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/web-marisa/HEAD/README.md -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/web-marisa/HEAD/cmd/main.go -------------------------------------------------------------------------------- /cmd/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/web-marisa/HEAD/cmd/wire.go -------------------------------------------------------------------------------- /cmd/wire_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/web-marisa/HEAD/cmd/wire_gen.go -------------------------------------------------------------------------------- /config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/web-marisa/HEAD/config/config.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/web-marisa/HEAD/go.mod -------------------------------------------------------------------------------- /src/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/web-marisa/HEAD/src/app.go -------------------------------------------------------------------------------- /src/controller/index_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/web-marisa/HEAD/src/controller/index_controller.go -------------------------------------------------------------------------------- /src/controller/wireSet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/web-marisa/HEAD/src/controller/wireSet.go --------------------------------------------------------------------------------