mirror of
https://github.com/moltbot/moltbot.git
synced 2026-05-07 16:06:19 +00:00
7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
export async function importRuntimeModule<T>(
|
|
baseUrl: string,
|
|
parts: readonly string[],
|
|
): Promise<T> {
|
|
return (await import(new URL(parts.join(""), baseUrl).href)) as T;
|
|
}
|