diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2021-08-03 16:28:22 -0600 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2021-08-03 16:28:22 -0600 |
commit | 9c3ea8dd803d6f0df768e3ae37f8c4ab2efbcc5c (patch) | |
tree | 93f2f3e104a255e4959816ac762b70e7dafd6562 /srv/mailinglist | |
parent | ec4aac24abc35fcf192c13a3fc9b2b65875c3444 (diff) |
implement finalize and unsubscribe endpoints
Diffstat (limited to 'srv/mailinglist')
-rw-r--r-- | srv/mailinglist/store.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/srv/mailinglist/store.go b/srv/mailinglist/store.go index 185e14d..f9790c0 100644 --- a/srv/mailinglist/store.go +++ b/srv/mailinglist/store.go @@ -17,7 +17,7 @@ import ( var ( // ErrNotFound is used to indicate an email could not be found in the // database. - ErrNotFound = errors.New("no record for given email found") + ErrNotFound = errors.New("no record found") ) // EmailIterator will iterate through a sequence of emails, returning the next |