Skip to content
Snippets Groups Projects
Commit c47f4706 authored by Pavel Antonov's avatar Pavel Antonov :asterisk:
Browse files

Merge branch 'feature/PRXS-1191-MoveObserver' into 'master'

Перенесен collaborators/observer.go

See merge request perxis/perxis-go!41
parents 1d63accf 791843a1
No related branches found
No related tags found
No related merge requests found
package collaborators
import "context"
type CollaboratorObserver interface{}
type CollaboratorSetObserver interface {
OnCollaboratorSet(ctx context.Context, collaborator *Collaborator) (string, error)
}
type CollaboratorRemoveObserver interface {
OnCollaboratorRemove(ctx context.Context, collaborator *Collaborator) (string, error)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment