First working? version with persistent state

This commit is contained in:
Bendodroid 2023-11-10 03:24:12 +01:00
commit 8a1cf0456a
Signed by: bendodroid
GPG key ID: 3EEE19A0F73D5FFC
3 changed files with 102 additions and 1 deletions

View file

@ -38,3 +38,10 @@ type SpaceAPIResponseV14 struct {
URL string `json:"url"`
} `json:"links"`
}
type PersistentStateV14 struct {
State struct {
Open bool `json:"open"`
LastChange int64 `json:"lastchange"`
} `json:"state"`
}