mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-23 14:27:21 +00:00
10 lines
132 B
Ruby
10 lines
132 B
Ruby
class StubsController < ApplicationController
|
|
def index
|
|
render plain: 'OK'
|
|
end
|
|
|
|
def show
|
|
render plain: 'OK'
|
|
end
|
|
end
|