├── .gitignore ├── .idea ├── WeCourseService.iml ├── modules.xml ├── vcs.xml └── workspace.xml ├── CetConfig.go ├── GetAccount.go ├── GetCourses.go ├── GetDayCourse.go ├── GetGrade.go ├── GetLogin.go ├── GetPhoto.go ├── GetTeacher.go ├── GetWeekCourse.go ├── GetWeekCourseNew.go ├── GetWeekTime.go ├── JsonResult.go ├── LICENSE ├── README.md ├── WebSocket.go ├── config.json └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | /WeCourseService.exe 2 | -------------------------------------------------------------------------------- /.idea/WeCourseService.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/.idea/WeCourseService.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /CetConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/CetConfig.go -------------------------------------------------------------------------------- /GetAccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/GetAccount.go -------------------------------------------------------------------------------- /GetCourses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/GetCourses.go -------------------------------------------------------------------------------- /GetDayCourse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/GetDayCourse.go -------------------------------------------------------------------------------- /GetGrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/GetGrade.go -------------------------------------------------------------------------------- /GetLogin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/GetLogin.go -------------------------------------------------------------------------------- /GetPhoto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/GetPhoto.go -------------------------------------------------------------------------------- /GetTeacher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/GetTeacher.go -------------------------------------------------------------------------------- /GetWeekCourse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/GetWeekCourse.go -------------------------------------------------------------------------------- /GetWeekCourseNew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/GetWeekCourseNew.go -------------------------------------------------------------------------------- /GetWeekTime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/GetWeekTime.go -------------------------------------------------------------------------------- /JsonResult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/JsonResult.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/README.md -------------------------------------------------------------------------------- /WebSocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/WebSocket.go -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/config.json -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Gao/WeCourseService/HEAD/main.go --------------------------------------------------------------------------------