--- Board -------------------------------------------------------------
| 203 | // --- Board ------------------------------------------------------------- |
| 204 | |
| 205 | type Board struct { |
| 206 | Name string `json:"name"` |
| 207 | GrainSeed int64 `json:"grainSeed,omitempty"` |
| 208 | Notes []*Note `json:"notes"` |
| 209 | Strings []*StringConn `json:"strings,omitempty"` |
| 210 | Selected string `json:"-"` |
| 211 | TextMode TextStyleMode `json:"textMode,omitempty"` |
| 212 | Zoom int `json:"zoom,omitempty"` |
| 213 | HighlightColor int `json:"highlightColor,omitempty"` |
| 214 | } |
| 215 | |
| 216 | // Legacy background-mode strings from an earlier single-"mode" design. |
| 217 | // Read on load and migrated into Cork/Color; never written. |
nothing calls this directly
no outgoing calls
no test coverage detected