mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-08 15:54:43 -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
|