mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-06-19 08:14:02 +03:00
17 lines
378 B
C#
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() {}
|
|
}
|