mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-15 22:11:04 +00:00
0f2de6394a
* 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
7 lines
184 B
Go
7 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)
|
|
}
|