diff options
author | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-10-30 00:31:39 -0300 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:29 -0700 |
commit | fbf9732a7a7a599fdc35b7e9e2072d32d2ea9d33 (patch) | |
tree | 4a669e16690fdebf5f597f5bb9a229b888776e48 /outboxGet.go | |
parent | 8040825daac4a5ba24e947c4c657d169d7763543 (diff) |
goimports
Diffstat (limited to 'outboxGet.go')
-rw-r--r-- | outboxGet.go | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/outboxGet.go b/outboxGet.go index d2fabc4..10efff0 100644 --- a/outboxGet.go +++ b/outboxGet.go @@ -1,9 +1,13 @@ package main -import "net/http" -import "database/sql" -import _ "github.com/lib/pq" -import "encoding/json" +import ( + "database/sql" + "net/http" + + "encoding/json" + + _ "github.com/lib/pq" +) func GetActorOutbox(w http.ResponseWriter, r *http.Request, db *sql.DB) { actor := GetActorFromPath(db, r.URL.Path, "/") |