├── .github ├── install-gocqhttp.sh ├── temp.sh └── workflows │ ├── package.yml │ └── script.yml ├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── frontend ├── .eslintrc.cjs ├── .gitignore ├── .prettierrc.json ├── auto-imports.d.ts ├── components.d.ts ├── electron │ ├── .gitignore │ ├── forge.config.js │ ├── main.js │ ├── package-lock.json │ └── package.json ├── env.d.ts ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public │ └── favicon.ico ├── src │ ├── App.vue │ ├── assets │ │ ├── logo.svg │ │ ├── script │ │ │ ├── config.ts │ │ │ ├── socket.ts │ │ │ └── utils.ts │ │ └── style │ │ │ ├── base.css │ │ │ └── main.css │ ├── components │ │ ├── ConfigComponents │ │ │ ├── AIPlatform.vue │ │ │ ├── ChatPlatform.vue │ │ │ ├── OtherConfig.vue │ │ │ └── ResponseConfig.vue │ │ ├── ProgressBar.vue │ │ └── icons │ │ │ ├── Lock.vue │ │ │ └── Upload.vue │ ├── main.ts │ ├── router │ │ └── index.ts │ └── views │ │ ├── ConfigView.vue │ │ ├── FileUploadView.vue │ │ ├── HomeView.vue │ │ ├── LoginView.vue │ │ ├── NotFoundView.vue │ │ ├── SettingView.vue │ │ └── TermView.vue ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── requirements.txt └── utils ├── auth.py ├── config.py ├── file.py ├── monitor.py └── terminal.py /.github/install-gocqhttp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/.github/install-gocqhttp.sh -------------------------------------------------------------------------------- /.github/temp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/.github/temp.sh -------------------------------------------------------------------------------- /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.github/workflows/script.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/.github/workflows/script.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/app.py -------------------------------------------------------------------------------- /frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/.eslintrc.cjs -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/.prettierrc.json -------------------------------------------------------------------------------- /frontend/auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/auto-imports.d.ts -------------------------------------------------------------------------------- /frontend/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/components.d.ts -------------------------------------------------------------------------------- /frontend/electron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/electron/.gitignore -------------------------------------------------------------------------------- /frontend/electron/forge.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/electron/forge.config.js -------------------------------------------------------------------------------- /frontend/electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/electron/main.js -------------------------------------------------------------------------------- /frontend/electron/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/electron/package-lock.json -------------------------------------------------------------------------------- /frontend/electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/electron/package.json -------------------------------------------------------------------------------- /frontend/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/App.vue -------------------------------------------------------------------------------- /frontend/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/assets/logo.svg -------------------------------------------------------------------------------- /frontend/src/assets/script/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/assets/script/config.ts -------------------------------------------------------------------------------- /frontend/src/assets/script/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/assets/script/socket.ts -------------------------------------------------------------------------------- /frontend/src/assets/script/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/assets/script/utils.ts -------------------------------------------------------------------------------- /frontend/src/assets/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/assets/style/base.css -------------------------------------------------------------------------------- /frontend/src/assets/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/assets/style/main.css -------------------------------------------------------------------------------- /frontend/src/components/ConfigComponents/AIPlatform.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/components/ConfigComponents/AIPlatform.vue -------------------------------------------------------------------------------- /frontend/src/components/ConfigComponents/ChatPlatform.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/components/ConfigComponents/ChatPlatform.vue -------------------------------------------------------------------------------- /frontend/src/components/ConfigComponents/OtherConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/components/ConfigComponents/OtherConfig.vue -------------------------------------------------------------------------------- /frontend/src/components/ConfigComponents/ResponseConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/components/ConfigComponents/ResponseConfig.vue -------------------------------------------------------------------------------- /frontend/src/components/ProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/components/ProgressBar.vue -------------------------------------------------------------------------------- /frontend/src/components/icons/Lock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/components/icons/Lock.vue -------------------------------------------------------------------------------- /frontend/src/components/icons/Upload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/components/icons/Upload.vue -------------------------------------------------------------------------------- /frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/main.ts -------------------------------------------------------------------------------- /frontend/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/router/index.ts -------------------------------------------------------------------------------- /frontend/src/views/ConfigView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/views/ConfigView.vue -------------------------------------------------------------------------------- /frontend/src/views/FileUploadView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/views/FileUploadView.vue -------------------------------------------------------------------------------- /frontend/src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/views/HomeView.vue -------------------------------------------------------------------------------- /frontend/src/views/LoginView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/views/LoginView.vue -------------------------------------------------------------------------------- /frontend/src/views/NotFoundView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/views/NotFoundView.vue -------------------------------------------------------------------------------- /frontend/src/views/SettingView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/views/SettingView.vue -------------------------------------------------------------------------------- /frontend/src/views/TermView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/src/views/TermView.vue -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/utils/auth.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/utils/file.py -------------------------------------------------------------------------------- /utils/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/utils/monitor.py -------------------------------------------------------------------------------- /utils/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/web-mirai-panel/HEAD/utils/terminal.py --------------------------------------------------------------------------------