Provide rough draft of better project organization

This commit is contained in:
Matthew McGarvey
2020-10-05 23:41:18 -05:00
parent 1978c3d3bd
commit 85c212aee3
9 changed files with 115 additions and 43 deletions

View File

@@ -0,0 +1,8 @@
abstract class Invidious::Routes::BaseRoute
private getter config : Config
def initialize(@config)
end
abstract def handle(env)
end