Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Jwt jwt = new Jwt();

            jwt.SecretKey = "SecretKey";
            string token = jwt.GetToken("yank", "doc");

            string json = jwt.GetJson(token);

            Injection();

            AttributeIocAppService service = ServiceContainer.InitService <AttributeIocAppService>();

            service.Save();

            Console.Read();
        }