Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayPianikov committed May 23, 2024
1 parent 8c8401a commit 66294e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

internal class $(CompositionName)
{
private void Setup() =>
DI.Setup(kind: CompositionKind.Global)
.Bind().As(Singleton).To<ConsoleAdapter>();
private void Setup() => DI.Setup(kind: CompositionKind.Global)
.Bind().As(Singleton).To<ConsoleAdapter>();
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

internal partial class $(CompositionName)
{
private void Setup() =>
DI.Setup()
.Bind().As(Singleton).To<ConsoleAdapter>()
.Root<Program>("Root");
private void Setup() => DI.Setup()
.Bind().As(Singleton).To<ConsoleAdapter>()
.Root<Program>("Root");
}

0 comments on commit 66294e0

Please sign in to comment.