├── .gitignore ├── LICENSE ├── README.md ├── api └── v1 │ ├── article.go │ ├── article_type.go │ ├── translate.go │ └── upload.go ├── conf └── config.go ├── config.default.json ├── dao ├── article.go ├── article_type.go ├── attachment.go ├── dao.go └── init.go ├── domain ├── article.go └── article_type.go ├── main.go ├── model └── init.go ├── srv ├── article.go └── article_type.go ├── test └── main.go └── utils ├── init.go ├── qiniu.go └── validator.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/README.md -------------------------------------------------------------------------------- /api/v1/article.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/api/v1/article.go -------------------------------------------------------------------------------- /api/v1/article_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/api/v1/article_type.go -------------------------------------------------------------------------------- /api/v1/translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/api/v1/translate.go -------------------------------------------------------------------------------- /api/v1/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/api/v1/upload.go -------------------------------------------------------------------------------- /conf/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/conf/config.go -------------------------------------------------------------------------------- /config.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/config.default.json -------------------------------------------------------------------------------- /dao/article.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/dao/article.go -------------------------------------------------------------------------------- /dao/article_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/dao/article_type.go -------------------------------------------------------------------------------- /dao/attachment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/dao/attachment.go -------------------------------------------------------------------------------- /dao/dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/dao/dao.go -------------------------------------------------------------------------------- /dao/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/dao/init.go -------------------------------------------------------------------------------- /domain/article.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/domain/article.go -------------------------------------------------------------------------------- /domain/article_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/domain/article_type.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/main.go -------------------------------------------------------------------------------- /model/init.go: -------------------------------------------------------------------------------- 1 | package model 2 | 3 | -------------------------------------------------------------------------------- /srv/article.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/srv/article.go -------------------------------------------------------------------------------- /srv/article_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/srv/article_type.go -------------------------------------------------------------------------------- /test/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/test/main.go -------------------------------------------------------------------------------- /utils/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/utils/init.go -------------------------------------------------------------------------------- /utils/qiniu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/utils/qiniu.go -------------------------------------------------------------------------------- /utils/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noxue/gocms/HEAD/utils/validator.go --------------------------------------------------------------------------------