narratio/editor/command.go

7 lines
81 B
Go

package editor
type Command interface {
Do(s *State)
//Undo(s *State) error
}