1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-23 06:41:20 +00:00
Radarr/NzbDrone/Owin/IHostController.cs

10 lines
195 B
C#
Raw Normal View History

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