mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
9 lines
197 B
Crystal
9 lines
197 B
Crystal
|
module Invidious::Routing
|
||
|
macro get(path, controller)
|
||
|
get {{ path }} do |env|
|
||
|
controller_instance = {{ controller }}.new(config)
|
||
|
controller_instance.handle(env)
|
||
|
end
|
||
|
end
|
||
|
end
|