From 1ccf66b8b43e8163a0c5af5f60ae96a199e873d5 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Thu, 8 Aug 2019 09:13:49 +0000 Subject: [PATCH] Fix code formatting Used goimports to fix code formatting. --- accounts.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/accounts.go b/accounts.go index 3e5bd60..a27d3f4 100644 --- a/accounts.go +++ b/accounts.go @@ -41,10 +41,10 @@ type Field struct { // AccountSource is a Mastodon account profile field. type AccountSource struct { - Privacy *string `json:"privacy"` + Privacy *string `json:"privacy"` Sensitive *bool `json:"sensitive"` - Language *string `json:"language"` - Note *string `json:"note"` + Language *string `json:"language"` + Note *string `json:"note"` Fields *[]Field `json:"fields"` }