using Robust.Shared.Console;
namespace Robust.Server.Console
{
///
/// The server console shell that executes commands.
///
[NotContentImplementable]
public interface IServerConsoleHost : IConsoleHost
{
///
/// Initializes the ConsoleShell service.
///
void Initialize();
}
}