2510c1e0ac
- Big simplification of the overall workflow. - Composite commands store their commands properly, these are undoable now. - Child commands are excluded from history
12 lines
168 B
Ruby
12 lines
168 B
Ruby
class Command::Result::InsightResponse
|
|
attr_reader :content
|
|
|
|
def initialize(content)
|
|
@content = content
|
|
end
|
|
|
|
def as_json
|
|
{ message: content }
|
|
end
|
|
end
|