├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── actions │ ├── check_in.ts │ ├── info.ts │ ├── practice.ts │ └── read.ts ├── answers │ ├── answers.json │ ├── crawler.ts │ └── index.ts ├── config.ts ├── index.ts └── instance.ts ├── tsconfig.json └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/check_in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/src/actions/check_in.ts -------------------------------------------------------------------------------- /src/actions/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/src/actions/info.ts -------------------------------------------------------------------------------- /src/actions/practice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/src/actions/practice.ts -------------------------------------------------------------------------------- /src/actions/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/src/actions/read.ts -------------------------------------------------------------------------------- /src/answers/answers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/src/answers/answers.json -------------------------------------------------------------------------------- /src/answers/crawler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/src/answers/crawler.ts -------------------------------------------------------------------------------- /src/answers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/src/answers/index.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- 1 | export const key = 2 | /** Your KEY here */ 3 | ""; 4 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/src/instance.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/situ2001/gzhu-jdsd-helper/HEAD/yarn.lock --------------------------------------------------------------------------------