Skip to content
Snippets Groups Projects
Commit 791843a1 authored by Valera Shaitorov's avatar Valera Shaitorov :alien:
Browse files

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

parent 1d63accf
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