20 lines
484 B
JavaScript
20 lines
484 B
JavaScript
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';
|
|
|
|
export { boot } from './noname/init/index.js';
|
|
|
|
export {
|
|
gnc,
|
|
ai,
|
|
game,
|
|
get,
|
|
lib,
|
|
_status,
|
|
ui,
|
|
}
|