File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ export default class MongoConnectionManager {
5454
5555 public ensureConnected ( ) : void {
5656 if ( this . mongoConnection === null ) {
57- throw new Error ( 'No active MongoDB connection. Please connect first.' ) ;
57+ throw new Error ( 'No active MongoDB connection! Please connect first.' ) ;
5858 }
5959 }
6060
Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ import {
99 type IMemberActivity ,
1010 type IRawInfo ,
1111 type IRole ,
12- } from './interfaces' ;
12+ } from '.. /interfaces' ;
1313import {
1414 channelSchema ,
1515 guildMemberSchema ,
1616 heatMapSchema ,
1717 MemberActivitySchema ,
1818 rawInfoSchema ,
1919 roleSchema ,
20- } from './models/schemas' ;
20+ } from '.. /models/schemas' ;
2121
2222export default class DatabaseManager {
2323 private static instance : DatabaseManager | undefined ;
Original file line number Diff line number Diff line change 1+ export * from './connection' ;
2+ export * from './databaseManager' ;
Original file line number Diff line number Diff line change @@ -2,6 +2,5 @@ export * from './models';
22export * from './models/schemas' ;
33export * from './interfaces' ;
44export * from './config/enums' ;
5- export * from './databaseManager' ;
6- export * from './connection' ;
75export * from './repositories' ;
6+ export * from './db' ;
You can’t perform that action at this time.
0 commit comments