flora is a fast and secure runtime that lets you write discord bots for your servers, with a rich TypeScript SDK, without worrying about running infrastructure. [mirror]
1/* dprint-ignore-file
2Bundled module map for multi-file deployments.
3We compile all user files into a single script and keep a tiny in-memory
4loader so ESM imports/exports work without a runtime filesystem. */
5const __modules = {}
6const __cache = {}
7function __define(id, factory) {__modules[id] = factory }
8function __require(id) {
9 if (__cache[id]) return __cache[id].exports
10 const factory = __modules[id]
11 if (!factory) throw new Error(`Module not found: ${id}`)
12 const module = { exports: {} }
13 __cache[id] = module
14 factory(module.exports, module)
15 return module.exports
16}