├── .gitignore ├── LICENSE ├── README.MD ├── config └── config.ini ├── controller ├── file.go ├── init.go ├── ticket.go └── user.go ├── go.mod ├── go.sum ├── libs └── string.go ├── main.go ├── middleware ├── Init.go ├── cors.go ├── csrf.go └── jwt.go ├── models ├── Init.go ├── mt.go ├── role.go ├── satisfaction.go ├── ticket.go ├── tkcontent.go ├── tksource.go └── user.go └── router └── Init.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/README.MD -------------------------------------------------------------------------------- /config/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/config/config.ini -------------------------------------------------------------------------------- /controller/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/controller/file.go -------------------------------------------------------------------------------- /controller/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/controller/init.go -------------------------------------------------------------------------------- /controller/ticket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/controller/ticket.go -------------------------------------------------------------------------------- /controller/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/controller/user.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/go.sum -------------------------------------------------------------------------------- /libs/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/libs/string.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/main.go -------------------------------------------------------------------------------- /middleware/Init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/middleware/Init.go -------------------------------------------------------------------------------- /middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/middleware/cors.go -------------------------------------------------------------------------------- /middleware/csrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/middleware/csrf.go -------------------------------------------------------------------------------- /middleware/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/middleware/jwt.go -------------------------------------------------------------------------------- /models/Init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/models/Init.go -------------------------------------------------------------------------------- /models/mt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/models/mt.go -------------------------------------------------------------------------------- /models/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/models/role.go -------------------------------------------------------------------------------- /models/satisfaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/models/satisfaction.go -------------------------------------------------------------------------------- /models/ticket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/models/ticket.go -------------------------------------------------------------------------------- /models/tkcontent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/models/tkcontent.go -------------------------------------------------------------------------------- /models/tksource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/models/tksource.go -------------------------------------------------------------------------------- /models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/models/user.go -------------------------------------------------------------------------------- /router/Init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aveyuan/syt/HEAD/router/Init.go --------------------------------------------------------------------------------