Delete unnecessary middleware

This commit is contained in:
2025-09-27 10:10:41 -04:00
parent 05aea612a1
commit e0786c6b91

View File

@@ -1,12 +0,0 @@
module Laradi
class Middleware
def initialize(app)
@app = app
end
def call(env)
@app.call(env)
end
end
end