narratio/editor/command.go

7 lines
93 B
Go
Raw Normal View History

2024-05-10 12:06:40 +02:00
package editor
type Command interface {
2024-09-14 14:54:41 +02:00
Do(lines []string) error
2024-05-10 12:06:40 +02:00
//Undo(s *State) error
}