You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
330 B
14 lines
330 B
package conf |
|
|
|
// TVApp defines the configuration on behalf of the tv app |
|
type TVApp struct { |
|
MobiApp string |
|
Build string |
|
Platform string |
|
} |
|
|
|
// PageConf defines the configuration for the home page info |
|
type PageConf struct { |
|
FollowSize int |
|
HideIndexShow []string // the zones that we need to hide the index show part |
|
}
|
|
|