invidious/src/invidious/routing.cr

12 行
309 B
Crystal
Raw 通常表示 履歴

module Invidious::Routing
{% for http_method in {"get", "post", "delete", "options", "patch", "put", "head"} %}
macro {{http_method.id}}(path, controller, method = :handle)
{{http_method.id}} \{{ path }} do |env|
\{{ controller }}.\{{ method.id }}(env)
end
end
{% end %}
end