Lots of SzGui work

This commit is contained in:
2026-02-25 00:08:27 -06:00
parent e6749c51c4
commit dad80e30da
20 changed files with 968 additions and 22 deletions

View File

@@ -1,6 +1,12 @@
// See https://aka.ms/new-console-template for more information
using SzCore;
using SzCore.Defaults;
using SzGui;
var app = new SzApp();
app.Init();
DefaultLocalFileManager _fileManager = new();
ISzLogger _logger = new SzLogger();
ISzDatabaseHandler _databaseHandler = new SzDatabaseHandler();
SZ.Init(_fileManager, _logger, _databaseHandler);
SzApp.AppInstance.Init();