gpt-storyteller/src/parsers/generic.cr

6 lines
93 B
Crystal

module Parser
abstract class PromptGenericParser
abstract def parse : Prompt
end
end