this repo has no description
at master 325 B view raw
1using System.Net; 2using System; 3 4namespace Eldfell; 5 6class Program 7{ 8 [Get("/")] 9 Response Index() 10 { 11 return new RenderTemplate(""); 12 } 13 14 [Get("/User/:name")] 15 Response User(string name) 16 { 17 return new Response(name); 18 } 19 20 public static void Main(string[] args) 21 { 22 23 } 24}