mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 01:02:57 -07:00
14 lines
252 B
C#
14 lines
252 B
C#
using System;
|
|
|
|
namespace PlexRequests.Updater
|
|
{
|
|
class MainClass
|
|
{
|
|
public static void Main (string[] args)
|
|
{
|
|
Console.WriteLine ("Starting PlexRequests .Net updater");
|
|
var s = new Updater();
|
|
s.Start(args[0]);
|
|
}
|
|
}
|
|
}
|