1
0
mirror of https://github.com/chylex/Discord-History-Tracker.git synced 2024-10-17 09:42:44 +02:00
Discord-History-Tracker/app/Server/Database/DummyDatabaseFile.cs
2023-07-21 18:47:21 +02:00

17 lines
378 B
C#

using System.Diagnostics.CodeAnalysis;
namespace DHT.Server.Database;
[SuppressMessage("ReSharper", "ArrangeObjectCreationWhenTypeNotEvident")]
public sealed class DummyDatabaseFile : IDatabaseFile {
public static DummyDatabaseFile Instance { get; } = new();
public string Path => "";
private DummyDatabaseFile() {}
public void Vacuum() {}
public void Dispose() {}
}