summaryrefslogtreecommitdiff
path: root/internal/federation/handshake.go
blob: 47c8a6c841b5c641bd9ae3eae68343538aa8e6f7 (plain)
1
2
3
4
5
6
7
package federation

import "net/url"

func (f *federator) Handshaking(username string, remoteAccountID *url.URL) bool {
	return f.dereferencer.Handshaking(username, remoteAccountID)
}