jellyfin-discord-bot/server/structures/command.ts
mightypanders 66f843b399
All checks were successful
Compile the repository / compile (pull_request) Successful in 1m12s
format more files
2023-06-24 21:09:56 +02:00

8 lines
164 B
TypeScript

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