Added SQLite storage backend.
This commit is contained in:
parent
999ce86a27
commit
3f6007922c
21 changed files with 665 additions and 245 deletions
SharpChatCommon
8
SharpChatCommon/Storage.cs
Normal file
8
SharpChatCommon/Storage.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
using SharpChat.Messages;
|
||||
|
||||
namespace SharpChat;
|
||||
|
||||
public interface Storage {
|
||||
MessageStorage CreateMessageStorage();
|
||||
Task UpgradeStorage();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue