Skip to content

jaronnie/restc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

restc

rest client for calling apis

example

package main
import (
	"context"
	
	"github.com/jaronnie/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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages