transx/protocol/constant.go

9 lines
94 B
Go
Raw Normal View History

2015-11-18 23:16:57 +08:00
package protocol
2015-11-13 15:44:17 +08:00
type Direction int
const (
RECEIVE Direction = 0
SEND Direction = 1
)