narratio/editor/state.go

10 lines
94 B
Go
Raw Normal View History

2024-05-10 12:06:40 +02:00
package editor
type State struct {
Err error
}
func NewState() *State {
return &State{}
}