From d3d8ee78ce8865b579df5a797be49bc5a06ea95c Mon Sep 17 00:00:00 2001 From: Tamara Deshong Date: Tue, 19 Nov 2024 10:17:29 -0500 Subject: [PATCH] style: format --- app_user.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app_user.go b/app_user.go index f834a26..5e46662 100644 --- a/app_user.go +++ b/app_user.go @@ -2,7 +2,7 @@ package passage type PassageUser = User type appUser struct { - app App + app App } const ( @@ -12,7 +12,7 @@ const ( func newAppUser(app App) *appUser { appUser := appUser{ - app: app, + app: app, } return &appUser