mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-08-07 13:43:57 +00:00
15 lines
229 B
Ruby
15 lines
229 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscourseAi
|
||
|
module Summarization
|
||
|
class EntryPoint
|
||
|
def load_files
|
||
|
require_relative "summary_generator"
|
||
|
end
|
||
|
|
||
|
def inject_into(plugin)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|