qbtrade/pkg/types/transfer.go

9 lines
124 B
Go
Raw Normal View History

2024-06-27 14:42:38 +00:00
package types
type TransferDirection int
const (
TransferIn TransferDirection = 1
TransferOut TransferDirection = -1
)