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/IDatabaseFile.cs
2023-07-21 18:47:21 +02:00

11 lines
136 B
C#

using System;
namespace DHT.Server.Database;
public interface IDatabaseFile : IDisposable {
string Path { get; }
void Vacuum();
}