Class: Daytona::OutputMessage
- Inherits:
-
Object
- Object
- Daytona::OutputMessage
- Defined in:
- lib/daytona/common/code_interpreter.rb
Overview
Represents stdout or stderr output from code execution
Instance Attribute Summary collapse
-
#output ⇒ String
readonly
The output content.
Instance Method Summary collapse
-
#initialize(output:) ⇒ OutputMessage
constructor
A new instance of OutputMessage.
Constructor Details
#initialize(output:) ⇒ OutputMessage
Returns a new instance of OutputMessage.
10 11 12 |
# File 'lib/daytona/common/code_interpreter.rb', line 10 def initialize(output:) @output = output end |
Instance Attribute Details
#output ⇒ String (readonly)
Returns The output content.
7 8 9 |
# File 'lib/daytona/common/code_interpreter.rb', line 7 def output @output end |