onyxframework / http

An opinionated framework for scalable web 🌎
https://onyxframework.com/http
MIT License
143 stars 11 forks source link

Add StaticRouter #53

Open vladfaust opened 5 years ago

vladfaust commented 5 years ago

Define static routes in compilation time:

# It's just a Handler
class MyStaticRouter
  include Onyx::REST::StaticRouter

  draw do
    get "/" do
      will_be_put_explicitly_into_the_code
    end
  end
end