node.go 138 B

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