From 884a4e95e5dbd17cbe518b76a0c9d457d1ce354d Mon Sep 17 00:00:00 2001 From: Songmu Date: Wed, 4 Dec 2019 19:31:04 +0900 Subject: [PATCH] add Songmu to authors --- main.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/main.go b/main.go index 8e5758dc..827f1f40 100644 --- a/main.go +++ b/main.go @@ -28,12 +28,13 @@ func newApp() *cli.App { app.Name = "ghq" app.Usage = "Manage GitHub repository clones" app.Version = fmt.Sprintf("%s (rev:%s)", version, revision) - app.Authors = []cli.Author{ - { - Name: "motemen", - Email: "motemen@gmail.com", - }, - } + app.Authors = []cli.Author{{ + Name: "motemen", + Email: "motemen@gmail.com", + }, { + Name: "Songmu", + Email: "y.songmu@gmail.com", + }} app.Commands = commands return app }