ire4ever1190 / mike

The new and improved mikero web framework
35 stars 1 forks source link

Multiverb handlers #12

Closed ire4ever1190 closed 1 year ago

ire4ever1190 commented 1 year ago

Handlers can now match against multiple verbs.

"/hello" -> [get, post]:
  # Will match POST /hello and GET /hello

"/hello" -> before[get, post]:
  # Will match like before but will run beforehand

Will now use this to implement HEAD for static files and probably also CORS helpers