You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tool/middleware/rabbitmq/define.go

16 lines
204 B

package rabbitmq
import "github.com/streadway/amqp"
type Config struct {
User string
Password string
Host string
Port string
}
type Connect struct {
Conn *amqp.Connection
Channel *amqp.Channel
}