better more robust typing

This commit is contained in:
Baipyrus 2024-04-12 13:59:15 +02:00
parent 775ea88bd3
commit 82e1a2c904

10
main.go
View File

@ -31,17 +31,17 @@ type Update struct {
}
type Color struct {
R int `json:"r"`
G int `json:"g"`
B int `json:"b"`
R uint8 `json:"r"`
G uint8 `json:"g"`
B uint8 `json:"b"`
Endpoint Endpoint `json:"endpoint"`
}
type Rectangle struct {
X int `json:"x"`
Y int `json:"y"`
W int `json:"w"`
H int `json:"h"`
W uint `json:"w"`
H uint `json:"h"`
Endpoint Endpoint `json:"endpoint"`
}