Websites/app/controllers/e621_ws/status/schema_controller.rb

21 lines
271 B
Ruby
Raw Normal View History

2024-05-02 22:04:43 -05:00
# 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