shithub: furgit

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