├── .travis.yml ├── README.md ├── bin └── conf │ └── develop │ ├── app.conf │ ├── dotlog.conf │ ├── dottask.conf │ └── dotweb.conf ├── config ├── config.go └── model.go ├── const └── const.go ├── core ├── cmap.go ├── exception │ └── exception.go └── timex │ ├── time.go │ └── time_test.go ├── document └── demo.MD ├── global └── global.go ├── main.go ├── protected ├── model │ └── DemoInfo.go ├── repository │ ├── BaseRepository.go │ └── demo │ │ └── DemoRepository.go └── service │ ├── BaseService.go │ └── demo │ └── DemoService.go ├── resources ├── config │ └── develop │ │ ├── app.conf │ │ ├── dotlog.conf │ │ ├── dottask.conf │ │ └── dotweb.conf └── version.yaml ├── server ├── contract │ └── ResponseInfo.go ├── handlers │ ├── demo │ │ └── demo.go │ └── test │ │ └── default.go ├── router.go ├── server.go └── validate │ └── validate.go ├── task ├── service.go └── tasks │ └── demo.go └── util ├── file └── files.go ├── http ├── http.go └── http_test.go ├── json └── json.go ├── rsa ├── rsa.go └── rsa_test.go └── time └── time.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/README.md -------------------------------------------------------------------------------- /bin/conf/develop/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/bin/conf/develop/app.conf -------------------------------------------------------------------------------- /bin/conf/develop/dotlog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/bin/conf/develop/dotlog.conf -------------------------------------------------------------------------------- /bin/conf/develop/dottask.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/bin/conf/develop/dottask.conf -------------------------------------------------------------------------------- /bin/conf/develop/dotweb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/bin/conf/develop/dotweb.conf -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/config/config.go -------------------------------------------------------------------------------- /config/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/config/model.go -------------------------------------------------------------------------------- /const/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/const/const.go -------------------------------------------------------------------------------- /core/cmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/core/cmap.go -------------------------------------------------------------------------------- /core/exception/exception.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/core/exception/exception.go -------------------------------------------------------------------------------- /core/timex/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/core/timex/time.go -------------------------------------------------------------------------------- /core/timex/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/core/timex/time_test.go -------------------------------------------------------------------------------- /document/demo.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/document/demo.MD -------------------------------------------------------------------------------- /global/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/global/global.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/main.go -------------------------------------------------------------------------------- /protected/model/DemoInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/protected/model/DemoInfo.go -------------------------------------------------------------------------------- /protected/repository/BaseRepository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/protected/repository/BaseRepository.go -------------------------------------------------------------------------------- /protected/repository/demo/DemoRepository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/protected/repository/demo/DemoRepository.go -------------------------------------------------------------------------------- /protected/service/BaseService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/protected/service/BaseService.go -------------------------------------------------------------------------------- /protected/service/demo/DemoService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/protected/service/demo/DemoService.go -------------------------------------------------------------------------------- /resources/config/develop/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/resources/config/develop/app.conf -------------------------------------------------------------------------------- /resources/config/develop/dotlog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/resources/config/develop/dotlog.conf -------------------------------------------------------------------------------- /resources/config/develop/dottask.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/resources/config/develop/dottask.conf -------------------------------------------------------------------------------- /resources/config/develop/dotweb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/resources/config/develop/dotweb.conf -------------------------------------------------------------------------------- /resources/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/resources/version.yaml -------------------------------------------------------------------------------- /server/contract/ResponseInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/server/contract/ResponseInfo.go -------------------------------------------------------------------------------- /server/handlers/demo/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/server/handlers/demo/demo.go -------------------------------------------------------------------------------- /server/handlers/test/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/server/handlers/test/default.go -------------------------------------------------------------------------------- /server/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/server/router.go -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/server/server.go -------------------------------------------------------------------------------- /server/validate/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/server/validate/validate.go -------------------------------------------------------------------------------- /task/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/task/service.go -------------------------------------------------------------------------------- /task/tasks/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/task/tasks/demo.go -------------------------------------------------------------------------------- /util/file/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/util/file/files.go -------------------------------------------------------------------------------- /util/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/util/http/http.go -------------------------------------------------------------------------------- /util/http/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/util/http/http_test.go -------------------------------------------------------------------------------- /util/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/util/json/json.go -------------------------------------------------------------------------------- /util/rsa/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/util/rsa/rsa.go -------------------------------------------------------------------------------- /util/rsa/rsa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/util/rsa/rsa_test.go -------------------------------------------------------------------------------- /util/time/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devfeel/dotweb-start/HEAD/util/time/time.go --------------------------------------------------------------------------------