diff options
author | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-08-15 12:29:03 -0300 |
---|---|---|
committer | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-08-15 12:30:26 -0300 |
commit | b0bb22aa9c9f1d5b2e582e58bf20c6856feb87ec (patch) | |
tree | 1107a5cbfd05f9b696d7ebacce9475f003db7a4c /outboxGet.go | |
parent | 149f71db2d6e1b704ff2712393da5276a622d4dd (diff) |
go fmt
Diffstat (limited to 'outboxGet.go')
-rw-r--r-- | outboxGet.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/outboxGet.go b/outboxGet.go index f656b3e..d2fabc4 100644 --- a/outboxGet.go +++ b/outboxGet.go @@ -35,7 +35,7 @@ func GetCollectionFromPath(db *sql.DB, path string) Collection { defer rows.Close() - for rows.Next(){ + for rows.Next() { var actor Actor var post ObjectBase var attachID string @@ -72,7 +72,7 @@ func GetCollectionFromPath(db *sql.DB, path string) Collection { return nColl } -func GetObjectFromPath(db *sql.DB, path string) ObjectBase{ +func GetObjectFromPath(db *sql.DB, path string) ObjectBase { var nObj ObjectBase |