shame: forgot to add new code pkg

This commit is contained in:
Ethan Buchman
2017-11-30 15:37:31 -05:00
parent 81e4effbdb
commit 550d6a6081
6 changed files with 35 additions and 20 deletions

9
example/code/code.go Normal file
View File

@ -0,0 +1,9 @@
package code
// Return codes for the examples
const (
CodeTypeOK uint32 = 0
CodeTypeEncodingError uint32 = 1
CodeTypeBadNonce uint32 = 2
CodeTypeUnauthorized uint32 = 3
)