gpt-storyteller/src/builders/generic.cr

7 lines
97 B
Crystal

module Builder
abstract class PromptGeneric
abstract def build(prompt : Prompt)
end
end