(a Attachment)
| 16 | type RemoteActorFetcher struct { |
| 17 | // signAs is the account that will be used to sign the request |
| 18 | signAs *models.Account |
| 19 | } |
| 20 | |
| 21 | func NewRemoteActorFetcher(signAs *models.Account) *RemoteActorFetcher { |
| 22 | return &RemoteActorFetcher{ |
| 23 | signAs: signAs, |
| 24 | } |
| 25 | } |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected