This repository has been archived on 2023-04-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
defend-together/authorizer/Program.cs
2020-05-09 09:49:52 -04:00

24 lines
435 B
C#

using System;
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();
}
}
}