musique/server/proto/time.go
2022-12-16 16:34:52 +01:00

12 lines
137 B
Go

package proto
type TimeResponse struct {
Time int64
}
func Time() (req Request) {
req.Type = "time"
req.Version = Version
return
}