10 lines
94 B
Go
10 lines
94 B
Go
|
package editor
|
||
|
|
||
|
type State struct {
|
||
|
Err error
|
||
|
}
|
||
|
|
||
|
func NewState() *State {
|
||
|
return &State{}
|
||
|
}
|