summaryrefslogtreecommitdiff
path: root/notifier.go
blob: f5169c3ebcd4e7ebafc562a8e02e421b690ee690 (plain)
1
2
3
4
5
6
7
package registration

// RegistrationNotifier forwards new registrations
type RegistrationNotifier interface {
	//NotifyNewRegistration notifies about a new registration
	NotifyNewRegistration(reg *Registration) error
}