10 lines
257 B
C#
10 lines
257 B
C#
namespace MoonlightServers.Daemon.ServerSystem.Interfaces;
|
|
|
|
public interface IServerComponent : IAsyncDisposable
|
|
{
|
|
/// <summary>
|
|
/// Initializes the server component
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Task InitializeAsync();
|
|
} |