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#
Raw Normal View History

2020-05-09 09:49:52 -04:00
using System;
2020-05-09 23:40:35 -04:00
using System.Threading;
2020-05-09 09:49:52 -04:00
namespace authorizer
{
class Program
{
static AuthServer server;
static void Main(string[] args)
{
server = new AuthServer();
2020-05-09 09:49:52 -04:00
server.Start();
string input;
do
{
input = Console.ReadLine();
}
while(input != "stop");
server.Stop();
2020-05-09 09:49:52 -04:00
}
}
}