Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 544 Bytes

README.md

File metadata and controls

40 lines (30 loc) · 544 Bytes

go-targetd

Go binding of open-iscsi/targetd API.

Usage

targetd.yaml

user: "foo"
password: bar
ssl: false
package main

import (
	"context"
	"fmt"
	"log"
	
	"github.com/lovi-cloud/go-targetd/targetd"
)

func main() {
	ctx := context.Background()
	
	client, err := targetd.New("http://192.0.2.1:18700", "foo", "bar", nil, nil)
	if err != nil {
		log.Fatal(err)
	}
	
	pools, err := client.GetPoolList(ctx)
	if err != nil {
		log.Fatal(err)
	}
	fmt.Printf("%+v\n", pools)
}