NodeInfo server implemented in Go.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

9 righe
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. }