place/api/structs.go

7 lines
76 B
Go
Raw Normal View History

2024-06-12 18:44:12 +00:00
package api
type Coordinate struct {
X int `form:"x"`
Y int `form:"y"`
}