Skip to content

Commit

Permalink
Expose init publically
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgarde committed Aug 7, 2023
1 parent dfa5881 commit d4726ef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,12 @@ export default class Utilities {
*/
constructor(appName, serviceName) {
this.#ssmPath = `/service/${appName}/${serviceName}/`;
this.#init();
}

/**
* Initializes the Utilities class's required services
*/
async #init() {
async init() {
await this.#loadSSMParameters();
await this.#setupDatabase();
await this.#preloadSchemas();
Expand Down

0 comments on commit d4726ef

Please sign in to comment.