12 lines
226 B
Go
Raw Normal View History

2017-11-30 15:37:31 -05:00
package code
// Return codes for the examples
const (
CodeTypeOK uint32 = 0
CodeTypeEncodingError uint32 = 1
CodeTypeBadNonce uint32 = 2
CodeTypeUnauthorized uint32 = 3
CodeTypeBadOption uint32 = 101
2017-11-30 15:37:31 -05:00
)