Skip to content

Commit

Permalink
fix: add missing registration for options
Browse files Browse the repository at this point in the history
  • Loading branch information
AdmiringWorm committed Jun 2, 2022
1 parent a0d00f1 commit 60f16ef
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/CCVARN/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ private static IContainer CreateContainer()
container.Register<IExporter, PlainTextExporter>();
container.Register<IExporter, MarkdownExporter>();

container.Register<InitOptions>(Reuse.Singleton);
container.Register<ParseOption>(Reuse.Singleton);

return container;
}

Expand Down

0 comments on commit 60f16ef

Please sign in to comment.