From fa97dab762f219a0b1b75cf4195f8b7e18465065 Mon Sep 17 00:00:00 2001 From: jdomnitz <380352+jdomnitz@users.noreply.github.com> Date: Mon, 13 Jan 2025 19:20:21 -0500 Subject: [PATCH] fix build --- ExampleConsole/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ExampleConsole/Program.cs b/ExampleConsole/Program.cs index a242b73..e4f4d89 100644 --- a/ExampleConsole/Program.cs +++ b/ExampleConsole/Program.cs @@ -19,9 +19,9 @@ internal class Program static async Task Main(string[] args) { Controller controller = Controller.Load("fabric.fabric", "fabric.key"); - await controller.Start(); + await controller.EnumerateFabric(); Console.WriteLine(controller.ToString()); - + Console.ReadLine(); } }