mirror of https://github.com/databricks/cli.git
12 lines
173 B
Go
12 lines
173 B
Go
|
package cmdio
|
||
|
|
||
|
type NewlineEvent struct{}
|
||
|
|
||
|
func (event *NewlineEvent) String() string {
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (event *NewlineEvent) IsInplaceSupported() bool {
|
||
|
return false
|
||
|
}
|