Skip to content

Commit

Permalink
Add SetupFacades as core app bootstrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
aedart committed May 29, 2024
1 parent 16ba467 commit 6f1aedb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/core/src/Application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import type {
import { ServiceRegistrar } from "@aedart/support/services";
import { isset } from "@aedart/support/misc";
import LoadEnvironmentVariables from "./bootstrap/LoadEnvironmentVariables";
import SetupFacades from "./bootstrap/SetupFacades";
import { version } from "../package.json";

/**
Expand Down Expand Up @@ -229,7 +230,8 @@ export default class Application extends Container implements ApplicationContrac
public get coreBootstrappers(): BootstrapperConstructor[]
{
return [
LoadEnvironmentVariables
LoadEnvironmentVariables,
SetupFacades
];
}

Expand Down

0 comments on commit 6f1aedb

Please sign in to comment.