| 172 | } |
| 173 | |
| 174 | type Workspace struct { |
| 175 | OID string `json:"oid"` |
| 176 | Version int `json:"version"` |
| 177 | Name string `json:"name,omitempty"` |
| 178 | Icon string `json:"icon,omitempty"` |
| 179 | Color string `json:"color,omitempty"` |
| 180 | TabIds []string `json:"tabids"` |
| 181 | ActiveTabId string `json:"activetabid"` |
| 182 | Meta MetaMapType `json:"meta"` |
| 183 | } |
| 184 | |
| 185 | func (*Workspace) GetOType() string { |
| 186 | return OType_Workspace |
nothing calls this directly
no outgoing calls
no test coverage detected