updated code

This commit is contained in:
2024-05-11 16:52:23 +03:00
parent 5fc472832f
commit 2e773d3c7e
3 changed files with 67 additions and 16 deletions

View File

@@ -17,6 +17,7 @@ type ServerInfo struct {
Image ImageInfo
On bool
Nickname string
Ports []Port
}
type FileBrowserInfo struct {
@@ -24,3 +25,12 @@ type FileBrowserInfo struct {
OwnerId string
ConnectedTo ServerInfo
}
type ServerData struct {
Id string
OwnerId string
Image string
VolumeId string
Nickname string
UserPermissions map[string]Permission
}