From 4e09f3b9a8e8116ed4c00cfa23c18e1ea9bbf087 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Wed, 2 Feb 2022 20:59:38 +0100 Subject: [PATCH] refactor: migrate authors to dedicated file [ci skip] --- AUTHORS.md | 10 ++++++++++ cli/cli.go | 10 ---------- 2 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 AUTHORS.md diff --git a/AUTHORS.md b/AUTHORS.md new file mode 100644 index 00000000..a0429193 --- /dev/null +++ b/AUTHORS.md @@ -0,0 +1,10 @@ +# authors + +> If you're looking at this and you hack on Abra and you're not listed here, +> please do add yourself! This is a community project, let's show + +- 3wordchant +- decentral1se +- kawaiipunk +- knoflook +- roxxers diff --git a/cli/cli.go b/cli/cli.go index ca1ad9ce..8784f99b 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -163,16 +163,6 @@ func newAbraApp(version, commit string) *cli.App { AutoCompleteCommand, }, BashComplete: autocomplete.SubcommandComplete, - Authors: []cli.Author{ - // If you're looking at this and you hack on Abra and you're not listed - // here, please do add yourself! This is a community project, let's show - // some love - {Name: "3wordchant"}, - {Name: "decentral1se"}, - {Name: "kawaiipunk"}, - {Name: "knoflook"}, - {Name: "roxxers"}, - }, } app.EnableBashCompletion = true