예제 #1
0
파일: Minnow.cs 프로젝트: bittercoder/Boat
 public Minnow(Context context)
     : base(context)
 {
     get("/", index);
 }
예제 #2
0
파일: Minnow.cs 프로젝트: bittercoder/Boat
 private void index(Context context)
 {
     this.Write("Hey Skipper");
 }
예제 #3
0
파일: App.cs 프로젝트: bittercoder/Boat
 public App(Context context)
 {
     _context = context;
 }