gpt-storyteller/src/builders/generic.cr
2023-04-18 15:16:32 +02:00

6 lines
97 B
Crystal

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