mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
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");
|
||
|
}
|
||
|
}
|
||
|
}
|