Websites/app/controllers/e621_ws/status/schema_controller.rb
2024-05-02 22:04:43 -05:00

21 lines
271 B
Ruby

# frozen_string_literal: true
module E621Ws
module Status
class SchemaController < ApplicationController
def index
render("combined")
end
def combined
end
def current
end
def history
end
end
end
end