diff --git a/internal/types/desktop.go b/internal/types/desktop.go index 69f888b8..ae206053 100644 --- a/internal/types/desktop.go +++ b/internal/types/desktop.go @@ -1,15 +1,15 @@ package types type ScreenSize struct { - Width int `json:"width"` - Height int `json:"height"` - Rate int16 `json:"rate"` + Width int + Height int + Rate int16 } type ScreenConfiguration struct { - Width int `json:"width"` - Height int `json:"height"` - Rates map[int]int16 `json:"rates"` + Width int + Height int + Rates map[int]int16 } type DesktopManager interface { diff --git a/internal/types/session.go b/internal/types/session.go index b23d9255..883dbbee 100644 --- a/internal/types/session.go +++ b/internal/types/session.go @@ -5,11 +5,11 @@ import "net/http" type MemberProfile struct { //Token string Name string - IsAdmin bool + IsAdmin bool //Enabled bool - //CanControl bool - //CanWatch bool - //ClipboardAccess bool + //CanControl bool + //CanWatch bool + //ClipboardAccess bool } type Session interface {