wechaty/go-wechaty

View on GitHub
wechaty-puppet/schemas/image.go

Summary

Maintainability
A
0 mins
Test Coverage
package schemas

//go:generate stringer -type=ImageType
type ImageType uint8

const (
    ImageTypeUnknown ImageType = iota
    ImageTypeThumbnail
    ImageTypeHD
    ImageTypeArtwork
)