invidious-mod/src/invidious/routing.cr

16 行
421 B
Crystal

module Invidious::Routing
macro get(path, controller, method = :handle)
get {{ path }} do |env|
controller_instance = {{ controller }}.new(config)
controller_instance.{{ method.id }}(env)
end
end
macro post(path, controller, method = :handle)
post {{ path }} do |env|
controller_instance = {{ controller }}.new(config)
controller_instance.{{ method.id }}(env)
end
end
end