mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-24 23:06:41 +00:00
15 lines
167 B
Ruby
15 lines
167 B
Ruby
class BlogsController < ApplicationController
|
|
|
|
def create
|
|
render json: {}
|
|
end
|
|
|
|
def index
|
|
render json: {}
|
|
end
|
|
|
|
def show
|
|
render json: {}
|
|
end
|
|
end
|