Beispiel #1
0
        public ConfigModule() : base("/config")
        {
            Get["/"] = x =>
            {
                var model = new ConfigStatusModel
                {
                    Config = new ConfigInfo()
                };
                return(View["index.html", model]);
            };
//            Post["/update"] = parameters =>
//            {
//
//            };
        }
        public ConfigModule(): base("/config")
        {
            Get["/"] = x =>
            {
                var model = new ConfigStatusModel
                {
                    Config = new ConfigInfo()
                };
                return View["index.html", model];
            };
//            Post["/update"] = parameters =>
//            {
//                
//            };
        }