Files
Sub-Store/backend/src/main.js

27 lines
1.8 KiB
JavaScript
Raw Normal View History

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
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
);
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
migrate();
2022-05-24 21:20:26 +08:00
serve();