diff --git a/src/datasources/users.ts b/src/datasources/users.ts index 684c318..1f2fc2b 100644 --- a/src/datasources/users.ts +++ b/src/datasources/users.ts @@ -11,7 +11,7 @@ export class Users { private static logger = new Logger(Users.name); private static usersDb = null; - static async getUsers(): Promise> { + static async getDatasource(): Promise> { if (Users.usersDb) { return Users.usersDb; }