using Nancy; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace xicheji { public class HomeModule : NancyModule { public HomeModule() { Get("/hello", (req) => { return "ok~"; }); Post("/update-car", (req) => { Program.MainForm.UpdateCarInfo(DateTime.Now); return "ok~"; }); } } }