user_validator.go 121 B

123456
  1. package protocol
  2. type UserValidator interface {
  3. Add(user *User) error
  4. Get(timeHash []byte) (*User, Timestamp, bool)
  5. }