From 1ca249b2e33449331d6d6ca371830f04eb917d71 Mon Sep 17 00:00:00 2001 From: Hao Zhang Date: Thu, 12 Mar 2026 19:18:48 +0800 Subject: [PATCH] feat: Export function `run` in main.ts for future usage. --- ddss/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddss/main.ts b/ddss/main.ts index ea2b209..83328b3 100644 --- a/ddss/main.ts +++ b/ddss/main.ts @@ -24,7 +24,7 @@ const componentMap: Record = { chain, }; -async function run(addr: string, components: string[]): Promise { +export async function run(addr: string, components: string[]): Promise { const sequelize = await initializeDatabase(addr); for (const name of components) {