WIP: Format code with Google Typescript formatting guidelines
This commit is contained in:
@@ -2,19 +2,16 @@ import {
|
||||
ChatInputCommandInteraction,
|
||||
Client,
|
||||
SlashCommandBuilder,
|
||||
} from "discord.js";
|
||||
import { Sequelize } from "sequelize";
|
||||
|
||||
import { Settings } from './common'
|
||||
} from 'discord.js';
|
||||
import {Sequelize} from 'sequelize';
|
||||
|
||||
import {Settings} from './common';
|
||||
|
||||
const data = new SlashCommandBuilder()
|
||||
.setName("unnag")
|
||||
.setDescription("Remove a nag");
|
||||
.setName('unnag')
|
||||
.setDescription('Remove a nag');
|
||||
|
||||
|
||||
async function initialize(settings: Settings) {
|
||||
}
|
||||
async function initialize(settings: Settings) {}
|
||||
|
||||
async function execute(interaction: ChatInputCommandInteraction) {
|
||||
return;
|
||||
@@ -24,6 +21,6 @@ export default function (settings: Settings) {
|
||||
return {
|
||||
data,
|
||||
execute,
|
||||
initialize: async() => await initialize(settings),
|
||||
initialize: async () => await initialize(settings),
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user