narratio/editor/command.go

7 lines
81 B
Go
Raw Normal View History

2024-05-10 12:06:40 +02:00
package editor
type Command interface {
Do(s *State)
//Undo(s *State) error
}