libricochet-go/application/acceptallcontacthandler.go

14 lines
365 B
Go
Raw Normal View History

package application
type AcceptAllContactHandler struct{}
func (aach *AcceptAllContactHandler) ContactRequest(name string, message string) string {
return "Pending"
}
func (aach *AcceptAllContactHandler) ContactRequestRejected() {
}
func (aach *AcceptAllContactHandler) ContactRequestAccepted() {
}
func (aach *AcceptAllContactHandler) ContactRequestError() {
}