This repository has been archived on 2020-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
libricochet-go/application/acceptallcontacthandler.go

14 lines
365 B
Go

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() {
}