mirror of
https://github.com/spacebarchat/server.git
synced 2026-03-30 16:05:41 +00:00
6 lines
188 B
C#
6 lines
188 B
C#
namespace Spacebar.Interop.Replication.Abstractions;
|
|
|
|
public interface ISpacebarReplication {
|
|
public Task InitializeAsync();
|
|
public Task SendAsync(ReplicationMessage message);
|
|
} |