feat: add publish app

This commit is contained in:
2024-10-07 22:28:21 +08:00
parent 8beb65e637
commit 0fc580aa38
17 changed files with 1393 additions and 722 deletions

View File

@@ -0,0 +1,8 @@
import { AppListModel } from '../routes/app-manager/module/index.ts';
const main = async () => {
const list = await AppListModel.findAll();
console.log(list.map((item) => item.key));
};
main();