shithub: furgit

ref: cf02f2958c191bea02126faf8daf72a7aae76bd9
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
)