8 lines
130 B
Go
8 lines
130 B
Go
package qbittorrent
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotLogin = errors.New("not login")
|
|
ErrAuthFailed = errors.New("auth failed")
|
|
)
|