about summary refs log tree commit diff
path: root/LibMatrix.ExampleBot/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'LibMatrix.ExampleBot/Program.cs')
-rw-r--r--LibMatrix.ExampleBot/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibMatrix.ExampleBot/Program.cs b/LibMatrix.ExampleBot/Program.cs
index 93a5f27..63610b4 100644
--- a/LibMatrix.ExampleBot/Program.cs
+++ b/LibMatrix.ExampleBot/Program.cs
@@ -11,7 +11,7 @@ Console.WriteLine("Hello, World!");
 

 var host = Host.CreateDefaultBuilder(args).ConfigureServices((_, services) => {

     services.AddScoped<TieredStorageService>(x =>

-        new(

+        new TieredStorageService(

             cacheStorageProvider: new FileStorageProvider("bot_data/cache/"),

             dataStorageProvider: new FileStorageProvider("bot_data/data/")

         )