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.

9 lines
193 B

  1. package code
  2. // Return codes for the examples
  3. const (
  4. CodeTypeOK uint32 = 0
  5. CodeTypeEncodingError uint32 = 1
  6. CodeTypeBadNonce uint32 = 2
  7. CodeTypeUnauthorized uint32 = 3
  8. )