You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 line
259 B

  1. package client
  2. // Status handler
  3. // handle, known, running, numerator, denominator
  4. type StatusHandler func(string, bool, bool, uint64, uint64)
  5. type Status struct {
  6. Handle string
  7. Known, Running bool
  8. Numerator, Denominator uint64
  9. }