node.go 189 B

1234567891011121314
  1. package model
  2. type NodeCreateInput struct {
  3. Name string
  4. Host string
  5. Port int
  6. Url string
  7. PingType int
  8. UrlStatus int
  9. }
  10. type NodeDelInput struct {
  11. Host string
  12. }