using Tinyfox.WebApiEngine;
using Tinyfox.WebApiEngine.Results;
// Configure routing parameters
var rt = (HttpRoute)Fox.Router;
rt.GET["/"] = _ => new TextResult("Hello, World.");
rt.GET["/api/values/{value}"] = c => {
var v = c.Request["value"];
return new TextResult($"value is '{v}'");
};
// Start and wait for exit
Fox.Start();
Fox.WaitExit();
// After the program is launched ...
// Access the "http://localhost:8088/" with a browser
// Or access the "http://localhost:8088/api/values/100"
For more details, please visit:
Tinyfox Development Manual
QQ Group: 963776462
Developer Email: j66x@163.com