0
0
Fork 0

Restructure database to have per-guild data

This commit is contained in:
Oliver-Akins 2021-07-22 12:56:24 -06:00
parent 0cc34a1517
commit be470cda9e

View file

@ -1,4 +1,5 @@
interface database { interface database {
[index: string]: {
webhook: { webhook: {
id: string; id: string;
token: string; token: string;
@ -9,4 +10,5 @@ interface database {
votes: { [index: number]: number }; votes: { [index: number]: number };
users: { [index: string]: number }; users: { [index: string]: number };
}; };
}
} }