gotosocial/internal/federation/handshake.go
Tobi Smethurst 0f2de6394a
Dereference remote replies (#132)
* decided where to put reply dereferencing

* fiddling with dereferencing threads

* further adventures

* tidy up some stuff

* move dereferencing functionality

* a bunch of refactoring

* go fmt

* more refactoring

* bleep bloop

* docs and linting

* start implementing replies collection on gts side

* fiddling around

* allow dereferencing our replies

* lint, fmt
2021-08-10 13:32:39 +02:00

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