homepage.go 330 B

1234567891011121314
  1. package conf
  2. // TVApp defines the configuration on behalf of the tv app
  3. type TVApp struct {
  4. MobiApp string
  5. Build string
  6. Platform string
  7. }
  8. // PageConf defines the configuration for the home page info
  9. type PageConf struct {
  10. FollowSize int
  11. HideIndexShow []string // the zones that we need to hide the index show part
  12. }