mirror of
1
Fork 0
gotosocial/internal/federation/handshake.go

8 lines
184 B
Go

package federation
import "net/url"
func (f *federator) Handshaking(username string, remoteAccountID *url.URL) bool {
return f.dereferencer.Handshaking(username, remoteAccountID)
}