diff options
Diffstat (limited to 'server/admin')
-rw-r--r-- | server/admin/store.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/admin/store.go b/server/admin/store.go index 437e6af..c466b95 100644 --- a/server/admin/store.go +++ b/server/admin/store.go @@ -30,7 +30,7 @@ func (store Store) Find(requestAdmin Admin) (Admin, error) { if found { return admin, nil } - return Admin{}, errors.New("admin not found") + return Admin{}, errors.New("Admin not found") } func createAdmin(requestAdmin Admin, adminRows pgx.Rows) (Admin, bool) { |