shithub: furgit

ref: 1a8842b33d6d83d1754267e087fd7b4f73ca9e91
dir: /refstore/files/transaction_kind.go/

View raw version
package files

type txKind uint8

const (
	txCreate txKind = iota
	txUpdate
	txDelete
	txVerify
	txCreateSymbolic
	txUpdateSymbolic
	txDeleteSymbolic
	txVerifySymbolic
)