2022-05-23 18:33:16 +08:00
|
|
|
/**
|
|
|
|
|
* ███████╗██╗ ██╗██████╗ ███████╗████████╗ ██████╗ ██████╗ ███████╗
|
|
|
|
|
* ██╔════╝██║ ██║██╔══██╗ ██╔════╝╚══██╔══╝██╔═══██╗██╔══██╗██╔════╝
|
|
|
|
|
* ███████╗██║ ██║██████╔╝█████╗███████╗ ██║ ██║ ██║██████╔╝█████╗
|
|
|
|
|
* ╚════██║██║ ██║██╔══██╗╚════╝╚════██║ ██║ ██║ ██║██╔══██╗██╔══╝
|
|
|
|
|
* ███████║╚██████╔╝██████╔╝ ███████║ ██║ ╚██████╔╝██║ ██║███████╗
|
|
|
|
|
* ╚══════╝ ╚═════╝ ╚═════╝ ╚══════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝
|
|
|
|
|
* Advanced Subscription Manager for QX, Loon, Surge and Clash.
|
|
|
|
|
* @author: Peng-YM
|
2023-08-30 22:49:02 +08:00
|
|
|
* @github: https://github.com/sub-store-org/Sub-Store
|
2022-05-23 18:33:16 +08:00
|
|
|
* @documentation: https://www.notion.so/Sub-Store-6259586994d34c11a4ced5c406264b46
|
|
|
|
|
*/
|
2022-06-28 13:10:43 +08:00
|
|
|
import { version } from '../package.json';
|
2022-05-23 18:33:16 +08:00
|
|
|
console.log(
|
2022-05-24 21:20:26 +08:00
|
|
|
`
|
2022-05-23 18:33:16 +08:00
|
|
|
┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅
|
2022-07-05 10:59:40 +08:00
|
|
|
Sub-Store -- v${version}
|
2022-05-23 18:33:16 +08:00
|
|
|
┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅
|
2022-05-24 21:20:26 +08:00
|
|
|
`,
|
2022-05-23 18:33:16 +08:00
|
|
|
);
|
|
|
|
|
|
2022-07-05 10:59:40 +08:00
|
|
|
import migrate from '@/utils/migration';
|
2022-06-16 14:24:26 +08:00
|
|
|
import serve from '@/restful';
|
2022-05-24 21:20:26 +08:00
|
|
|
|
2022-07-05 10:59:40 +08:00
|
|
|
migrate();
|
2022-05-24 21:20:26 +08:00
|
|
|
serve();
|