namespace MoonlightServers.Daemon.ServerSystem.Interfaces;
public interface IReporter : IServerComponent
{
///
/// Writes both in the server logs as well in the server console the provided message as a status update
///
/// The message to write
///
public Task StatusAsync(string message);
///
/// Writes both in the server logs as well in the server console the provided message as an error
///
/// The message to write
///
public Task ErrorAsync(string message);
}