node.go 196 B

1234567891011121314
  1. package model
  2. import "time"
  3. type Node struct {
  4. Ip string
  5. CountryCode string
  6. CountryName string
  7. City string
  8. Secret string
  9. Vip bool
  10. LastUpdateTime time.Time
  11. }