package events import "go.neonxp.dev/djson/internal/command" type Dispatcher interface { Subscribe(path []string, id string, ch chan command.Mutation) Unsubscribe(path []string, id string) Notify(path []string, event *command.Mutation) }