-
Notifications
You must be signed in to change notification settings - Fork 21
/
doc.go
19 lines (18 loc) · 817 Bytes
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2015-2016 mrd0ll4r and contributors. All rights reserved.
// Use of this source code is governed by the MIT license, which can be found in
// the LICENSE file.
// Package tbotapi provides a Go wrapper for the Telegram Messenger Bot API.
//
// Note that, if the REST API returns an error, that error will be wrapped
// in a Go error.
//
// We currently only support long polling (i.e. no webhooks).
// Feature-wise, everything up to and including the January 20 changes should
// be implemented.
//
// Examples are provided in the examples package, so check that out.
//
// The Bot API imposes certain limitations, these are especially interesting
// for inline query results and files. This library does not keep track of
// those limitations, so you'll have to perform checks yourself.
package tbotapi