Routing
Chaining
import cheetah from 'cheetah/mod.ts'
const app = new cheetah()
.get('/cake', () => '🎂') // GET '/cake'
.patch('/cookie', () => '🍪') // PATCH '/cookie'
.put('/donut', () => '🍩') // PUT '/donut'
Nesting
import cheetah, { Collection } from 'cheetah/mod.ts'
const fastFood = new Collection()
.get('/burger', () => '🍔') // GET '/fast-food/burger'
const app = new cheetah()
.use('/fast-food', fastFood)
.patch('/pancakes', () => '🥞') // PATCH '/pancakes'