mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
14 lines
281 B
Go
14 lines
281 B
Go
package v1
|
|
|
|
// https://wakatime.com/api/v1/users/current/machine_names
|
|
|
|
type MachineViewModel struct {
|
|
Data []*MachineEntry `json:"data"`
|
|
TotalPages int `json:"total_pages"`
|
|
}
|
|
|
|
type MachineEntry struct {
|
|
Id string `json:"id"`
|
|
Value string `json:"value"`
|
|
}
|