NodeInfo server implemented in Go.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

9 wiersze
232 B

  1. package nodeinfo
  2. type Resolver interface {
  3. // IsOpenRegistration returns whether or not registration is open on this node.
  4. IsOpenRegistration() (bool, error)
  5. // Usage returns usage stats for this node.
  6. Usage() (Usage, error)
  7. }