11 lines
194 B
Ruby
11 lines
194 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module OceanicWs
|
||
|
class HomeController < OceanicWs::ApplicationController
|
||
|
include ::ApplicationController::CommonAssetRoutes
|
||
|
|
||
|
def index
|
||
|
end
|
||
|
end
|
||
|
end
|