mirror of
https://github.com/elyby/chrly.git
synced 2024-11-30 10:42:14 +05:30
22 lines
414 B
Go
22 lines
414 B
Go
package data
|
|
|
|
type TexturesResponse struct {
|
|
Skin *Skin `json:"SKIN"`
|
|
Cape *Cape `json:"CAPE,omitempty"`
|
|
}
|
|
|
|
type Skin struct {
|
|
Url string `json:"url"`
|
|
Hash string `json:"hash"`
|
|
Metadata *SkinMetadata `json:"metadata,omitempty"`
|
|
}
|
|
|
|
type SkinMetadata struct {
|
|
Model string `json:"model"`
|
|
}
|
|
|
|
type Cape struct {
|
|
Url string `json:"url"`
|
|
Hash string `json:"hash"`
|
|
}
|