1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-27 02:07:41 +00:00
Sonarr/ServiceHelpers/ServiceUninstall/Program.cs

13 lines
183 B
C#
Raw Normal View History

using System.Linq;
namespace ServiceUninstall
{
public static class Program
{
static void Main()
{
ServiceHelper.Run(@"/u");
}
}
}