mirror of https://github.com/databricks/cli.git
14 lines
219 B
Go
14 lines
219 B
Go
|
package cmdio
|
||
|
|
||
|
type MessageEvent struct {
|
||
|
Message string `json:"message"`
|
||
|
}
|
||
|
|
||
|
func (event *MessageEvent) String() string {
|
||
|
return event.Message
|
||
|
}
|
||
|
|
||
|
func (event *MessageEvent) IsInplaceSupported() bool {
|
||
|
return false
|
||
|
}
|