jzero-io / restc

rest client for calling apis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

restc

rest client for calling apis

example

package main
import (
	"context"
	
	"github.com/jzero-io/restc"
)

func main() {
	restClient, err := restc.New(restc.WithUrl("http://127.0.0.1:8080"))
	if err != nil {
		panic(err)
	}

	result := restClient.Get().SubPath("/api/v1/version").Do(context.Background())
	if result.Error() != nil {
		panic(err)
	}
	println(result.Status())
}

About

rest client for calling apis

License:The Unlicense


Languages

Language:Go 100.0%