cursor.go 217 B

12345678910111213141516
  1. package connection
  2. type Cursor interface {
  3. NS() Namespace
  4. Id() string
  5. Cursor() string
  6. }
  7. type Namespace string
  8. const (
  9. NSMatch Namespace = "Match"
  10. NSLeague Namespace = "League"
  11. NSTeam Namespace = "Team"
  12. )