mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-09 10:29:11 -04:00
10 lines
142 B
Ruby
10 lines
142 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class BaseController < JSONAPI::ResourceController
|
|
abstract
|
|
end
|
|
end
|
|
end
|