4 |
import Application from "../../../build/out/framework/typescript/app/Application"; |
import Application from "../../../build/out/framework/typescript/app/Application"; |
5 |
import { Command } from "../../../build/out/framework/typescript/commands/Command"; |
import { Command } from "../../../build/out/framework/typescript/commands/Command"; |
6 |
import { Class } from "../../../build/out/framework/typescript/types/Utils"; |
import { Class } from "../../../build/out/framework/typescript/types/Utils"; |
|
import AnimeCommand from "./commands/AnimeCommand"; |
|
7 |
import NekoCommand from "./commands/NekoCommand"; |
import NekoCommand from "./commands/NekoCommand"; |
8 |
|
|
9 |
export default class Neko extends Extension { |
export default class Neko extends Extension { |
10 |
protected commands(): Awaitable<Class<Command, [Application]>[]> { |
protected commands(): Awaitable<Class<Command, [Application]>[]> { |
11 |
return [AnimeCommand, NekoCommand]; |
return [NekoCommand]; |
12 |
} |
} |
13 |
} |
} |