Moved Authors to informations package

This commit is contained in:
netbenix 2021-10-30 17:39:01 +02:00
parent 4ed0fe289d
commit c6f415f548
2 changed files with 46 additions and 16 deletions

19
informations/Authors.go Normal file
View file

@ -0,0 +1,19 @@
package informations
import "github.com/urfave/cli/v2"
func GetAuthors() []*cli.Author{
return []*cli.Author {
{
Name: "netbenix",
Email: "netbenix@codenoodles.de",
},
{
Name: "virusbear",
},
{
Name: "maduut",
},
}
}