From 21e9b4a6672a285f04a39e48a9538b21acfffdda Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Wed, 19 Aug 2020 12:29:23 -0400 Subject: [PATCH] Run `go fmt` on database.go --- database.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/database.go b/database.go index c764340..8237e41 100644 --- a/database.go +++ b/database.go @@ -2627,11 +2627,11 @@ func (db *datastore) GetIDForRemoteUser(ctx context.Context, remoteUserID, provi } type oauthAccountInfo struct { - Provider string - ClientID string - RemoteUserID string - DisplayName string - AllowDisconnect bool + Provider string + ClientID string + RemoteUserID string + DisplayName string + AllowDisconnect bool } func (db *datastore) GetOauthAccounts(ctx context.Context, userID int64) ([]oauthAccountInfo, error) {