19 lines
545 B
C#
19 lines
545 B
C#
using SzCore.DataObjects;
|
|
|
|
namespace SzCore.Defaults;
|
|
|
|
public class DefaultDatabaseHandler : ISzDatabaseHandler
|
|
{
|
|
public bool InternetAllowed { get; set; } = true;
|
|
public Dictionary<string, string> SzDbUrls { get; set; } = [];
|
|
|
|
public Task<SzDataset?> TryRetrieveDatasetAsync(Guid uuid, CancellationToken ct = default)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<ISzTemplate?> TryRetrieveTemplateAsync(Guid uuid, CancellationToken ct = default)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |