shithub: furgit

ref: 65a6439638a18e4317e144a0117db7604a2f2940
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
)