NodeInfo server implemented in Go.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

9 řádky
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. }