aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/google/go-github/github/git.go
blob: a80e55b9bb6a30b65a67b879fa90a623082fec24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2013 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package github

// GitService handles communication with the git data related
// methods of the GitHub API.
//
// GitHub API docs: http://developer.github.com/v3/git/
type GitService struct {
	client *Client
}