10 lines
199 B
Crystal
10 lines
199 B
Crystal
abstract class Invidious::Routes::BaseRoute
|
|
private getter config : Config
|
|
private getter logger : Invidious::LogHandler
|
|
|
|
def initialize(@config, @logger)
|
|
end
|
|
|
|
abstract def handle(env)
|
|
end
|