mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 14:13:43 +08:00
10 lines
234 B
Ruby
10 lines
234 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscourseNarrativeBot
|
||
|
class Engine < ::Rails::Engine
|
||
|
engine_name PLUGIN_NAME
|
||
|
isolate_namespace DiscourseNarrativeBot
|
||
|
config.autoload_paths << File.join(config.root, "lib")
|
||
|
end
|
||
|
end
|