From 76f9e14b9365119bd358668ada157ebb6598fab4 Mon Sep 17 00:00:00 2001 From: Michael Demetriou Date: Tue, 8 Oct 2019 15:22:59 +0300 Subject: [PATCH] Export Inbox getter for remote actor --- remoteActor.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/remoteActor.go b/remoteActor.go index 7951f43..07da0ba 100644 --- a/remoteActor.go +++ b/remoteActor.go @@ -91,3 +91,8 @@ func get(iri string) (info map[string]interface{}, err error) { return } + +// GetInbox returns the inbox url of the actor +func (ra RemoteActor) GetInbox() string { + return ra.inbox +}