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;
@ -10,3 +11,4 @@ interface database {
users: { [index: string]: number }; users: { [index: string]: number };
}; };
} }
}