An open API service indexing awesome lists of open source software.

https://github.com/yarlson/go-cbsd

CBSD golang library
https://github.com/yarlson/go-cbsd

cbsd golang

Last synced: 2 months ago
JSON representation

CBSD golang library

Awesome Lists containing this project

README

        

# go-cbsd
![Build](https://github.com/yarlson/go-cbsd/workflows/Build/badge.svg)

go-cbsd is a Go client library for managing [CBSD](https://github.com/cbsd/cbsd).

## Installation

```shell script
go get -u github.com/yarlson/go-cbsd
```

## Example
```go
package main

import (
"fmt"
"github.com/yarlson/go-cbsd"
)

func main() {
c := cbsd.NewCBSD()
bHyves, err := c.BHyve.List()
if err != nil {
panic(err)
}

for _, bHyve := range bHyves {
fmt.Println(bHyve.JName)
}
}

```

The project is under heavy active development, feel free to create a fork and submit a pull request.