edgeboxctl/main.go

20 lines
375 B
Go
Raw Normal View History

package main
2020-11-08 23:48:45 +01:00
import (
"fmt"
"github.com/go-redis/redis/v8"
)
func main() {
2020-11-08 23:48:45 +01:00
fmt.Println("Hello World")
2020-11-08 23:51:56 +01:00
// client := redis.NewClient(&redis.Options{
// Addr: "edgebox-queue:6379",
// Password: "", // no password set
// DB: 0, // use default DB
// })
// pong, err := client.Ping().Result()
// fmt.Println(pong, err)
}