mirror of https://github.com/Sonarr/Sonarr
13 lines
183 B
C#
13 lines
183 B
C#
|
using System.Linq;
|
|||
|
|
|||
|
namespace ServiceUninstall
|
|||
|
{
|
|||
|
public static class Program
|
|||
|
{
|
|||
|
static void Main()
|
|||
|
{
|
|||
|
ServiceHelper.Run(@"/u");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|