transx/constant.go

9 lines
90 B
Go

package main
type Direction int
const (
RECEIVE Direction = 0
SEND Direction = 1
)