Skip to content

creditdb/go-creditdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CreditDB Client for Go

This package provides a client library for CreditDB, a fast and efficient key-value database built in Typescript.

Installation

go get github.com/creditdb/go-creditdb

Usage

Import the package into your code:

import "github.com/creditdb/go-creditdb"
func main(){
    client := creditdb.NewClient().WithPage(1)
    ctx:=context.Background()
	defer client.Close(ctx)
	x, err:=client.Ping(ctx)
	if err != nil {
		log.Fatal(err)
		return
	}
	log.Println(x)
}

License

MIT

Author

About

Golang Client library for CreditDB

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages