Categorygithub.com/dotWicho/git
modulepackage
1.0.4
Repository: https://github.com/dotwicho/git.git
Documentation: pkg.go.dev

# README

git

Go Quality Report GoDoc

Library to manage Google go-github with more simplicity

Getting started

  • API documentation is available via godoc.

Installation

To install Git package, you need to install Go and set your Go workspace first.

1 - The first need Go installed (version 1.13+ is required). Then you can use the below Go command to install Git

$ go get -u github.com/dotWicho/git

And then Import it in your code:

package main

import "github.com/dotWicho/git"

Or

2 - Use as module in you project (go.mod file):

module myclient

go 1.13

require (
	github.com/dotWicho/git v1.0.0
)

# Functions

New creates a github Client with a provided token.

# Structs

Client encapsulate in a more simply implementation the Google's go-github.

# Interfaces

Operations interface.