3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 20:35:02 +00:00

feat: save deleted spam logs; server spam logs from a web server; update Knub to 9.6.4

This commit is contained in:
Dragory 2018-08-01 20:09:51 +03:00
parent 847ee11195
commit 16be52a5e7
10 changed files with 167 additions and 10 deletions

9
src/models/SpamLog.ts Normal file
View file

@ -0,0 +1,9 @@
import Model from "./Model";
export default class SpamLog extends Model {
public id: string;
public guild_id: string;
public body: string;
public created_at: string;
public expires_at: string;
}