Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Refactoring and upgrading #16

Merged
merged 3 commits into from
Jul 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ require (
github.com/octokit/go-octokit v0.4.1-0.20160312003706-812e91dfbd64 // indirect
github.com/pkg/errors v0.8.1
github.com/rakyll/gotest v0.0.0-20180125184505-86f0749cd8cc // indirect
github.com/tcnksm/ghr v0.12.1 // indirect
github.com/tcnksm/ghr v0.12.2 // indirect
golang.org/x/lint v0.0.0-20190409202823-959b441ac422 // indirect
)
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ github.com/tcnksm/ghr v0.12.0 h1:3dbJOU5/Nr6C1HeBWwOIvMsVt4/eOg2EQDAg11H0Y0Y=
github.com/tcnksm/ghr v0.12.0/go.mod h1:2YSVCxP2GsVRnE6R3bZxEiVnpJ9GUkotqlq2No0kTMU=
github.com/tcnksm/ghr v0.12.1 h1:oYNULfAztAbkKopO25yvj6p3vfJxQKsnbuPplVWnQII=
github.com/tcnksm/ghr v0.12.1/go.mod h1:tcp6tzbRYE0LqFSG7ykXP/BVG1/2BkX6aIn9FFV1mIQ=
github.com/tcnksm/ghr v0.12.2 h1:amE7jP1fUfKiobp/6Dvdu1FoGs6RuyI8wO4RHMaKXB8=
github.com/tcnksm/ghr v0.12.2/go.mod h1:tcp6tzbRYE0LqFSG7ykXP/BVG1/2BkX6aIn9FFV1mIQ=
github.com/tcnksm/go-gitconfig v0.1.2 h1:iiDhRitByXAEyjgBqsKi9QU4o2TNtv9kPP3RgPgXBPw=
github.com/tcnksm/go-gitconfig v0.1.2/go.mod h1:/8EhP4H7oJZdIPyT+/UIsG87kTzrzM4UsLGSItWYCpE=
github.com/tcnksm/go-latest v0.0.0-20170313132115-e3007ae9052e h1:IWllFTiDjjLIf2oeKxpIUmtiDV5sn71VgeQgg6vcE7k=
Expand Down
1 change: 0 additions & 1 deletion graphs.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ type createGraphParam struct {
type getGraphsCommand struct {
Username string `short:"u" long:"username" description:"User name of graph owner."`
}
type getGraphParam struct{}

type graphSVGCommand struct {
Username string `short:"u" long:"username" description:"User name of graph owner."`
Expand Down
1 change: 0 additions & 1 deletion test_base.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ func prepare() (string, string, string, string) {
func cleanup(beforeAPIBaseEnv string, beforeTokenEnv string) {
os.Setenv("PIXELA_API_BASE", beforeAPIBaseEnv)
os.Setenv("PIXELA_USER_TOKEN", beforeTokenEnv)
return
}