├── LICENSE ├── README.md └── src ├── .gitattributes ├── .gitignore ├── conf ├── app.conf └── id_relative.yaml ├── controllers ├── corp.go ├── default.go ├── enroll.go └── pub.go ├── main.go ├── models ├── model.go └── operating.go ├── routers └── router.go ├── static ├── .DS_Store ├── QR.html ├── QR.jpg ├── bckg.jpg ├── favicon.ico └── infome.html ├── tests ├── default_test.go └── model_test.go ├── utils ├── encrypt.go ├── encrypt_test.go ├── err.go ├── getconfig.go ├── lcsdistance.go ├── lcsdistance_test.go ├── pkcs7.go └── statistics-config.json └── views └── index.tpl /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/README.md -------------------------------------------------------------------------------- /src/.gitattributes: -------------------------------------------------------------------------------- 1 | *.* linguist-language=Go 2 | -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/conf/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/conf/app.conf -------------------------------------------------------------------------------- /src/conf/id_relative.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/conf/id_relative.yaml -------------------------------------------------------------------------------- /src/controllers/corp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/controllers/corp.go -------------------------------------------------------------------------------- /src/controllers/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/controllers/default.go -------------------------------------------------------------------------------- /src/controllers/enroll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/controllers/enroll.go -------------------------------------------------------------------------------- /src/controllers/pub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/controllers/pub.go -------------------------------------------------------------------------------- /src/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/main.go -------------------------------------------------------------------------------- /src/models/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/models/model.go -------------------------------------------------------------------------------- /src/models/operating.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/models/operating.go -------------------------------------------------------------------------------- /src/routers/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/routers/router.go -------------------------------------------------------------------------------- /src/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/static/.DS_Store -------------------------------------------------------------------------------- /src/static/QR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/static/QR.html -------------------------------------------------------------------------------- /src/static/QR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/static/QR.jpg -------------------------------------------------------------------------------- /src/static/bckg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/static/bckg.jpg -------------------------------------------------------------------------------- /src/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/static/favicon.ico -------------------------------------------------------------------------------- /src/static/infome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/static/infome.html -------------------------------------------------------------------------------- /src/tests/default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/tests/default_test.go -------------------------------------------------------------------------------- /src/tests/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/tests/model_test.go -------------------------------------------------------------------------------- /src/utils/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/utils/encrypt.go -------------------------------------------------------------------------------- /src/utils/encrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/utils/encrypt_test.go -------------------------------------------------------------------------------- /src/utils/err.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/utils/err.go -------------------------------------------------------------------------------- /src/utils/getconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/utils/getconfig.go -------------------------------------------------------------------------------- /src/utils/lcsdistance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/utils/lcsdistance.go -------------------------------------------------------------------------------- /src/utils/lcsdistance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/utils/lcsdistance_test.go -------------------------------------------------------------------------------- /src/utils/pkcs7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/utils/pkcs7.go -------------------------------------------------------------------------------- /src/utils/statistics-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/utils/statistics-config.json -------------------------------------------------------------------------------- /src/views/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gislu/gochat/HEAD/src/views/index.tpl --------------------------------------------------------------------------------