mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-22 09:15:50 +03:00
13 lines
274 B
Go
13 lines
274 B
Go
|
package transport
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"net/url"
|
||
|
)
|
||
|
|
||
|
func (t *transport) Dereference(c context.Context, iri *url.URL) ([]byte, error) {
|
||
|
l := t.log.WithField("func", "Dereference")
|
||
|
l.Debugf("performing GET to %s", iri.String())
|
||
|
return t.sigTransport.Dereference(c, iri)
|
||
|
}
|