Initial commit

This commit is contained in:
2026-09-26 16:22:16 +02:00
commit d902dfa8c4
24 changed files with 3964 additions and 0 deletions
@@ -0,0 +1,11 @@
# frozen_string_literal: true
module ::MyPluginModule
class ExamplesController < ::ApplicationController
requires_plugin PLUGIN_NAME
def index
render json: { hello: "world" }
end
end
end