mirror of
https://github.com/ergochat/ergo.git
synced 2025-12-20 02:00:11 -08:00
Move all errors into errors.go
This commit is contained in:
parent
3ef4c5f799
commit
2419f69879
17 changed files with 100 additions and 100 deletions
|
|
@ -5,7 +5,6 @@ package irc
|
|||
|
||||
import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"strconv"
|
||||
"time"
|
||||
|
|
@ -37,9 +36,6 @@ var (
|
|||
NoAccount = ClientAccount{
|
||||
Name: "*", // * is used until actual account name is set
|
||||
}
|
||||
|
||||
// generic sasl fail error
|
||||
errSaslFail = errors.New("SASL failed")
|
||||
)
|
||||
|
||||
// ClientAccount represents a user account.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue