Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

14 lignes
241 B

  1. package main
  2. type ProjectConfig struct {
  3. RedisConfig *ProjectRedisConfig `json:"redis,omitempty"`
  4. }
  5. type BackfeedItem struct {
  6. PrimaryShard byte
  7. SecondaryShard string
  8. Item []byte
  9. SkipBloom bool
  10. SkipFeed bool
  11. }