diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-02-08 16:29:36 +0100 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-02-08 16:29:36 +0100 |
commit | 800163a913f7bba533dddc4b3ee28909578987ce (patch) | |
tree | 71f8e26597936c6472b73f013c8b956cf9e9363a /src | |
parent | :arrow_up: bump lambert-db (diff) | |
download | server-800163a913f7bba533dddc4b3ee28909578987ce.tar.xz |
:sparkles: Event Model
Diffstat (limited to 'src')
-rw-r--r-- | src/models/Event.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/models/Event.ts b/src/models/Event.ts new file mode 100644 index 00000000..4197ed04 --- /dev/null +++ b/src/models/Event.ts @@ -0,0 +1,9 @@ +export interface Event { + guild_id?: bigint; + user_id?: bigint; + created_at: number; + data: any; + event: string; +} + +// located in collection events |