node.go 178 B

12345678910111213
  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. LastUpdateTime time.Time
  10. }