mirror of
https://github.com/Readarr/Readarr.git
synced 2026-01-29 00:01:00 -05:00
16 lines
289 B
C#
16 lines
289 B
C#
using System.Linq;
|
|
using System;
|
|
|
|
namespace ServiceUninstall
|
|
{
|
|
public static class Program
|
|
{
|
|
static void Main()
|
|
{
|
|
ServiceHelper.Run(@"/u");
|
|
Console.WriteLine("Press any key to continue");
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|