Replace bad file type error with constant

bot-api-6.1
Syfaro 2016-01-03 22:49:58 -06:00
parent 99262cf76c
commit 6c84cd1fbb
2 changed files with 7 additions and 1 deletions

2
bot.go
View File

@ -146,7 +146,7 @@ func (bot *BotAPI) UploadFile(endpoint string, params map[string]string, fieldna
ms.WriteReader(fieldname, f.Name, int64(len(data)), buf)
default:
return APIResponse{}, errors.New("bad file type")
return APIResponse{}, errors.New(ErrBadFileType)
}
method := fmt.Sprintf(APIEndpoint, bot.Token, endpoint)

View File

@ -39,6 +39,12 @@ const (
ModeMarkdown = "Markdown"
)
// Library errors
const (
// ErrBadFileType happens when you pass an unknown type
ErrBadFileType = "bad file type"
)
// Chattable is any config type that can be sent.
type Chattable interface {
values() (url.Values, error)