noname/noname.js

20 lines
484 B
JavaScript
Raw Normal View History

2023-12-20 01:27:46 +00:00
import { GNC as gnc } from './noname/gnc/index.js';
import { AI as ai } from './noname/ai/index.js';
import { Game as game } from './noname/game/index.js';
import { Get as get } from './noname/get/index.js';
import { Library as lib } from './noname/library/index.js';
import { status as _status } from './noname/status/index.js';
import { UI as ui } from './noname/ui/index.js';
2023-12-12 17:37:51 +00:00
2023-12-22 13:02:48 +00:00
export { boot } from './noname/init/index.js';
2023-12-12 17:37:51 +00:00
export {
2023-12-20 01:27:46 +00:00
gnc,
2023-12-12 17:37:51 +00:00
ai,
game,
get,
lib,
_status,
2023-12-22 13:02:48 +00:00
ui,
}