23 lines
433 B
Go
23 lines
433 B
Go
package imports
|
|
|
|
import (
|
|
apiCast "fonchain-fiee/api/cast"
|
|
)
|
|
|
|
type ArtistAccount struct {
|
|
Name string `json:"name"`
|
|
Account map[apiCast.PlatformIDENUM]string `json:"account"`
|
|
}
|
|
type ArtistMedia struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
Title string `json:"title"`
|
|
Img string `json:"img"`
|
|
Video string `json:"video"`
|
|
}
|
|
|
|
type failedRecord struct {
|
|
name string
|
|
msg string
|
|
}
|