Skip to content

Instantly share code, notes, and snippets.

View fari-99's full-sized avatar
💭
web scraping my way

Fadhlan Rizal fari-99

💭
web scraping my way
View GitHub Profile
@tomekbielaszewski
tomekbielaszewski / main.go
Last active August 17, 2023 19:22
Example of RabbitMQ reconnect feature. Including recovering already registered consumers.
package main
import (
"fmt"
"log"
"time"
)
func main() {
queue := NewQueue("amqp://guest:guest@localhost:5672/", "hello")