mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-23 22:36:42 +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
|