Define static routes in compilation time: ```crystal # 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 ```