1234567891011121314151617181920212223242526272829303132 |
- 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~";
- });
- Get("/update", (req) =>
- {
- Program.MainForm.UpdateTitle(DateTime.Now);
- return "ok~";
- });
- Post("/update-car", (req) =>
- {
- //TODO
- return "ok~";
- });
- }
- }
- }
|