cursor.go 116 B

12345678910
  1. package connection
  2. type Namespace string
  3. type Cursor interface {
  4. NS() Namespace
  5. Id() string
  6. Cursor() string
  7. }