diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-03-30 17:21:29 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-03-30 17:21:29 -0400 |
| commit | d37cc8c56cbf8c9ffe7023c671abe0d579ea875d (patch) | |
| tree | 15dd5ba6bc8046017d78ff0186af0175850c612b /bot/src/utils/sync.js | |
| parent | 1662608835099ee3176d07d67c6a3c69f716f938 (diff) | |
| download | AleeBot-d37cc8c56cbf8c9ffe7023c671abe0d579ea875d.tar.gz AleeBot-d37cc8c56cbf8c9ffe7023c671abe0d579ea875d.tar.bz2 AleeBot-d37cc8c56cbf8c9ffe7023c671abe0d579ea875d.zip | |
Moved models to the db folder
Diffstat (limited to 'bot/src/utils/sync.js')
| -rw-r--r-- | bot/src/utils/sync.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/src/utils/sync.js b/bot/src/utils/sync.js index fa3d8c9..9e11971 100644 --- a/bot/src/utils/sync.js +++ b/bot/src/utils/sync.js @@ -1,6 +1,6 @@ -import { quote, pendingQuote } from '../models/quote.js'; -import { guildSettings } from '../models/guild-settings.js'; -import { commandUsages } from '../models/command-usages.js'; +import { quote, pendingQuote } from '../db/models/quote.js'; +import { guildSettings } from '../db/models/guild-settings.js'; +import { commandUsages } from '../db/models/command-usages.js'; export function syncDB() { quote.sync().then(() => { |
