1
0
Fork 0
forked from External/ergo

Merge pull request #2028 from slingamn/channels_taketwo.1

refactor of channel persistence to use UUIDs
This commit is contained in:
Shivaram Lingamneni 2023-01-15 08:01:37 -08:00 committed by GitHub
commit 4317016a09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 804 additions and 653 deletions

View file

@ -51,6 +51,7 @@ var (
errNoExistingBan = errors.New("Ban does not exist")
errNoSuchChannel = errors.New(`No such channel`)
errChannelPurged = errors.New(`This channel was purged by the server operators and cannot be used`)
errChannelPurgedAlready = errors.New(`This channel was already purged and cannot be purged again`)
errConfusableIdentifier = errors.New("This identifier is confusable with one already in use")
errInsufficientPrivs = errors.New("Insufficient privileges")
errInvalidUsername = errors.New("Invalid username")