mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1/* global __bsky_require__ */
2/* global __bsky_chunk_load__ */
3
4const map = new Map()
5
6export function register(id, moduleExport) {
7 map.set(id, {default: moduleExport})
8}
9
10global.__bsky_require__ = function (id) {
11 return map.get(id)
12}
13global.__bsky_require__.u = function () {}
14
15global.__bsky_chunk_load__ = function () {
16 return {
17 then(cb) {
18 cb()
19 },
20 }
21}