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
fork

Configure Feed

Select the types of activity you want to include in your feed.

at c71d2aad7d48d60cc8c4cef21d693a4c2d7f8a41 16 lines 602 B view raw
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}