Renamed server.js to guild.js

This commit is contained in:
plane000
2018-10-25 17:38:35 +01:00
parent d521a8a931
commit 5d513ade65
2 changed files with 1 additions and 1 deletions

17
src/database/guild.js Normal file
View File

@@ -0,0 +1,17 @@
import Sequelize from 'sequelize';
import {BaseDatabase} from './baseDatabase';
import {Logger} from '../logger';
export class GuildTools extends BaseDatabase {
static async newGuild(id, serverName) {
const Guild = super.Guild;
try {
} catch (e) {
Logger.error(`An error occured inserting guild id: ${id}`);
return -1;
}
}
}