From 8a7348ed6a819a5165ac824dfdaf67e172423cd9 Mon Sep 17 00:00:00 2001 From: Adhityaa Chandrasekar Date: Mon, 18 Feb 2019 17:38:54 -0500 Subject: [PATCH] email.go: run go fmt --- api/email.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/api/email.go b/api/email.go index 2c24ebd..f01debf 100644 --- a/api/email.go +++ b/api/email.go @@ -5,10 +5,10 @@ import ( ) type email struct { - Email string `json:"email"` - UnsubscribeSecretHex string `json:"unsubscribeSecretHex"` + Email string `json:"email"` + UnsubscribeSecretHex string `json:"unsubscribeSecretHex"` LastEmailNotificationDate time.Time `json:"lastEmailNotificationDate"` - PendingEmails int `json:"-"` - SendReplyNotifications bool `json:"sendReplyNotifications"` - SendModeratorNotifications bool `json:"sendModeratorNotifications"` + PendingEmails int `json:"-"` + SendReplyNotifications bool `json:"sendReplyNotifications"` + SendModeratorNotifications bool `json:"sendModeratorNotifications"` }