scroll/src/scroll.ts

20 lines
324 B
JavaScript

/**
* The starting point for running scroll
*/
export enum RunTime {
Bun = 'bun',
Deno = 'deno',
Unknown = 'common',
}
import { importForRuntime } from "./common/index.ts";
/**
* Determine the runtime strategy, and go!
*/
(async () => {
const { main } = await importForRuntime('./index.ts');
await main();
})();