Fix code formatting

Used goimports to fix code formatting.
pull/118/head
Christian Muehlhaeuser 2019-08-08 09:13:49 +00:00 committed by mattn
parent 20bc690d8d
commit 1ccf66b8b4
1 changed files with 3 additions and 3 deletions

View File

@ -41,10 +41,10 @@ type Field struct {
// AccountSource is a Mastodon account profile field. // AccountSource is a Mastodon account profile field.
type AccountSource struct { type AccountSource struct {
Privacy *string `json:"privacy"` Privacy *string `json:"privacy"`
Sensitive *bool `json:"sensitive"` Sensitive *bool `json:"sensitive"`
Language *string `json:"language"` Language *string `json:"language"`
Note *string `json:"note"` Note *string `json:"note"`
Fields *[]Field `json:"fields"` Fields *[]Field `json:"fields"`
} }