You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/vendor/github.com/qiniu/qmgo/operator/operate_type.go

19 lines
510 B

package operator
type OpType string
const (
BeforeInsert OpType = "beforeInsert"
AfterInsert OpType = "afterInsert"
BeforeUpdate OpType = "beforeUpdate"
AfterUpdate OpType = "afterUpdate"
BeforeQuery OpType = "beforeQuery"
AfterQuery OpType = "afterQuery"
BeforeRemove OpType = "beforeRemove"
AfterRemove OpType = "afterRemove"
BeforeUpsert OpType = "beforeUpsert"
AfterUpsert OpType = "afterUpsert"
BeforeReplace OpType = "beforeReplace"
AfterReplace OpType = "afterReplace"
)