Skip to content
This repository has been archived by the owner on Oct 8, 2023. It is now read-only.
/ bgdk Public archive

Bearaujus Golang Development Kit: Making the development easier and testable!

License

Notifications You must be signed in to change notification settings

bearaujus/bgdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BGDK

bearaujus golang development kit or bgdk is the development kit with the main aim is making the development easier and testable.

INSTALLATION

go get "github.com/bearaujus/bgdk@v1.0.1"

PACKAGES

worker can execute many jobs asynchronously. This package also can do retries and use a custom error listener function to listen to the job when the job occurs an error.

 

util is an bgdk utilities packages.

json is utilities for the JSON files. This package implementing core functions from encoding/json. This package also has some additional I/O features such as JSON writer and JSON reader.

 

yaml is utilities for the YAML files. This package implementing core functions from gopkg.in/yaml.v3. This package also has some additional I/O features such as YAML writer and YAML reader.

 

ptrconv is utilities for converting an object to object ptr (*object) and vice versa. This package also can handle nil ptr object (*object) conversion.

 

Back to top