1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00
Files
Radarr/NzbDrone.Host/Owin/IHostController.cs
T

10 lines
200 B
C#

namespace NzbDrone.Host.Owin
{
public interface IHostController
{
string AppUrl { get; }
void StartServer();
void RestartServer();
void StopServer();
}
}