core/io/fs/event.go
2025-10-06 17:36:23 +02:00

15 lines
223 B
Go

package fs
type Action string
const (
ActionCreate Action = "create"
ActionUpdate Action = "update"
ActionRemove Action = "remove"
ActionList Action = "list"
)
func (a Action) String() string {
return string(a)
}