node-event-bot/server/structures/command.ts
mightypanders 9b2ddc35fa
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
big update of structure
2022-03-09 12:29:42 +01:00

8 lines
164 B
TypeScript

import { CommandType } from "../types/commandTypes";
export class Command {
constructor(commandOptions: CommandType) {
Object.assign(this, commandOptions)
}
}