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.
2020-05-09 23:40:35 -04:00

35 lines
683 B
C#

using System;
using System.Threading;
namespace authorizer
{
class Program
{
static AuthServer server;
static Redis redis;
static void Main(string[] args)
{
redis = new Redis(Environment.GetEnvironmentVariable("REDIS_HOSTNAME"));
redis.SetTest();
Thread.Sleep(100);
redis.GetTest();
/* server = new AuthServer();
server.Start();
string input;
do
{
input = Console.ReadLine();
}
while(input != "stop");
server.Stop(); */
}
}
}