19 lines
424 B
C#
19 lines
424 B
C#
using System;
|
|
using SzCore;
|
|
using SzCore.DataObjects;
|
|
using SzCore.Defaults;
|
|
|
|
namespace SzCli;
|
|
|
|
public class Program
|
|
{
|
|
private static readonly DefaultLocalFileManager FileManager = new();
|
|
private static readonly Logger Logger = new();
|
|
private static readonly DefaultDatabaseHandler DbHandler = new();
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
SZ.Init(FileManager, Logger, DbHandler);
|
|
}
|
|
}
|