This repository has been archived on 2023-04-11. You can view files and clone it, but cannot push or open issues or pull requests.

25 lines
460 B
C#

using System;
using System.Threading;
namespace authorizer
{
class Program
{
static AuthServer server;
static void Main(string[] args)
{
server = new AuthServer();
server.Start();
string input;
do
{
input = Console.ReadLine();
}
while(input != "stop");
server.Stop();
}
}
}