mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-04 13:05:42 +00:00
7 lines
189 B
C#
7 lines
189 B
C#
namespace Spacebar.Interop.Replication.Abstractions;
|
|
|
|
public interface ISpacebarReplication {
|
|
public Task InitializeAsync();
|
|
public Task SendAsync(ReplicationMessage message);
|
|
}
|