mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-11-28 07:21:21 +08:00
8 lines
210 B
Go
8 lines
210 B
Go
package eval
|
|
|
|
// Editor is the interface that the line editor has to satisfy. It is needed so
|
|
// that this package does not depend on the edit package.
|
|
type Editor interface {
|
|
Notify(string, ...interface{})
|
|
}
|