This commit is contained in:
Kale Blankenship 2017-05-06 18:24:06 -07:00
Родитель 282b6045aa
Коммит 9632574e62
2 изменённых файлов: 11 добавлений и 1 удалений

Просмотреть файл

@ -11,7 +11,7 @@ import (
"time"
)
// Connection defaults
// Default connection options
const (
DefaultMaxFrameSize = 512
DefaultIdleTimeout = 1 * time.Minute

10
doc.go Normal file
Просмотреть файл

@ -0,0 +1,10 @@
/*
Package amqp provides an AMQP 1.0 client implementation.
AMQP 1.0 is not compatible with AMQP 0-9-1 or 0-10, which are
the most common AMQP protocols in use today.
The example below shows how to use this package to connect
to a Microsoft Azure Service Bus queue.
*/
package amqp // import "pack.ag/amqp"