VBC-52 Use export default rather than class of the same name #53

Merged
Vylpes merged 4 commits from feature/VBC-52 into develop 2021-09-29 17:53:21 +01:00
Showing only changes of commit 3a9f1965ae - Show all commits

View file

@ -50,7 +50,7 @@ The code below will reply to the user with 'PONG' when they type {PREFIX}ping
import { Command, ICommandContext } from "vylbot-core";
export class Ping extends Command {
export default class Ping extends Command {
constructor() {
super();
this._roles = [ "Moderator" ];