Browse Source

move library under 'github' directory

This now aligns with the (pretty strong) golang convention of the
package name matching the path basename
Will Norris 13 years ago
parent
commit
7b9456bc0d
10 changed files with 2 additions and 2 deletions
  1. +1
    -1
      README.md
  2. +1
    -1
      examples/example.go
  3. +0
    -0
      github/github.go
  4. +0
    -0
      github/github_test.go
  5. +0
    -0
      github/orgs.go
  6. +0
    -0
      github/orgs_test.go
  7. +0
    -0
      github/repos.go
  8. +0
    -0
      github/repos_test.go
  9. +0
    -0
      github/users.go
  10. +0
    -0
      github/users_test.go

+ 1
- 1
README.md View File

@ -2,7 +2,7 @@
go-github is Go library for accessing the [GitHub API][].
**Documentation:** <http://godoc.org/github.com/google/go-github>
**Documentation:** <http://godoc.org/github.com/google/go-github/github>
**Build Status:** [![Build Status](https://travis-ci.org/google/go-github.png?branch=master)](https://travis-ci.org/google/go-github)


+ 1
- 1
examples/example.go View File

@ -3,7 +3,7 @@ package main
import (
"fmt"
"github.com/google/go-github"
"github.com/google/go-github/github"
)
func main() {


github.go → github/github.go View File


github_test.go → github/github_test.go View File


orgs.go → github/orgs.go View File


orgs_test.go → github/orgs_test.go View File


repos.go → github/repos.go View File


repos_test.go → github/repos_test.go View File


users.go → github/users.go View File


users_test.go → github/users_test.go View File


Loading…
Cancel
Save