Added SQLite storage backend.

This commit is contained in:
flash 2025-04-27 22:31:35 +00:00
commit 3f6007922c
Signed by: flash
GPG key ID: 2C9C2C574D47FE3E
21 changed files with 665 additions and 245 deletions
SharpChatCommon

View file

@ -0,0 +1,8 @@
using SharpChat.Messages;
namespace SharpChat;
public interface Storage {
MessageStorage CreateMessageStorage();
Task UpgradeStorage();
}