mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-01-06 22:42:49 +01:00
11 lines
136 B
C#
11 lines
136 B
C#
using System;
|
|
|
|
namespace DHT.Server.Database;
|
|
|
|
public interface IDatabaseFile : IDisposable {
|
|
string Path { get; }
|
|
|
|
|
|
void Vacuum();
|
|
}
|