golang-github-ngaut-go-zookeeper 0.0~git20150813.0.9c3719e-7 source package in Ubuntu

Changelog

golang-github-ngaut-go-zookeeper (0.0~git20150813.0.9c3719e-7) unstable; urgency=medium

  * QA upload.
  * UNRELEASED

 -- Jelmer Vernooij <email address hidden>  Wed, 25 May 2022 14:34:38 +0100

Upload details

Uploaded by:
Debian QA Group
Uploaded to:
Sid
Original maintainer:
Debian QA Group
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-ngaut-go-zookeeper_0.0~git20150813.0.9c3719e-7.dsc 2.3 KiB 0bf90d305b474029e52f2caa2f08e1e0631f01beef4b5648a10a4660cfa2d13a
golang-github-ngaut-go-zookeeper_0.0~git20150813.0.9c3719e.orig.tar.xz 15.9 KiB d42e6f165c2c251ab71503d56a9fc740a1132411a1acc5dba571f1567a7ce1b4
golang-github-ngaut-go-zookeeper_0.0~git20150813.0.9c3719e-7.debian.tar.xz 3.0 KiB 47097739a8d69d030a60a63cf060e9bb50c5c088389f43fc295e79adb398be95

No changes file available.

Binary packages built by this source

golang-github-ngaut-go-zookeeper-dev: Native ZooKeeper client for Go

 This package provides a native ZooKeeper (client) library for
 communicating with ZooKeeper servers.
 .
 Example:
     func main() {
         c, _, err := zk.Connect([]string{"127.0.0.1"}, time.Second) //*10)
         if err != nil {
             panic(err)
         }
         children, stat, ch, err := c.ChildrenW("/")
         if err != nil {
             panic(err)
         }
         fmt.Printf("%+v %+v\n", children, stat)
         e := <-ch
         fmt.Printf("%+v\n", e)
     }
 .
 See also: https://godoc.org/github.com/samuel/go-zookeeper/zk