initial commit
This commit is contained in:
12
model_overview_state.go
Normal file
12
model_overview_state.go
Normal file
@ -0,0 +1,12 @@
|
||||
package niri
|
||||
|
||||
import "encoding/json"
|
||||
|
||||
type overviewState struct {
|
||||
IsOpen bool `json:"is_open"`
|
||||
}
|
||||
|
||||
func (m overviewState) String() string {
|
||||
data, _ := json.MarshalIndent(m, "", "\t")
|
||||
return string(data)
|
||||
}
|
Reference in New Issue
Block a user