added bytes type

This commit is contained in:
Lunny Xiao 2016-05-13 10:51:19 +08:00
parent 49d0620cff
commit 147b5cf5c2
1 changed files with 1 additions and 0 deletions

View File

@ -207,6 +207,7 @@ var (
StringType = reflect.TypeOf(c_EMPTY_STRING) StringType = reflect.TypeOf(c_EMPTY_STRING)
BoolType = reflect.TypeOf(c_BOOL_DEFAULT) BoolType = reflect.TypeOf(c_BOOL_DEFAULT)
ByteType = reflect.TypeOf(c_BYTE_DEFAULT) ByteType = reflect.TypeOf(c_BYTE_DEFAULT)
BytesType = reflect.SliceOf(ByteType)
TimeType = reflect.TypeOf(c_TIME_DEFAULT) TimeType = reflect.TypeOf(c_TIME_DEFAULT)
) )