node.go 158 B

123456789101112
  1. package model
  2. import "time"
  3. type Node struct {
  4. Ip string
  5. CountryCode string
  6. CountryName string
  7. Secret string
  8. LastUpdateTime time.Time
  9. }