1234567891011121314151617181920212223242526 |
- 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~";
- });
- }
- }
- }
|