1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-29 02:55:38 +00:00
Lidarr/NzbDrone.Host/Owin/IHostController.cs

9 lines
170 B
C#
Raw Normal View History

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