mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-08-04 12:13:48 +00:00
10 lines
216 B
Ruby
10 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ::DiscourseAi
|
|
class Engine < ::Rails::Engine
|
|
engine_name PLUGIN_NAME
|
|
isolate_namespace DiscourseAi
|
|
config.autoload_paths << File.join(config.root, "lib")
|
|
end
|
|
end
|