Dropped unused struct

This commit is contained in:
Thomas Boerger
2018-04-15 01:26:08 +02:00
parent db33440fb5
commit d5e2e58801
2 changed files with 0 additions and 8 deletions
-3
View File
@@ -183,9 +183,6 @@ func run(c *cli.Context) error {
Job: Job{
Started: c.Int64("job.started"),
},
Auto: Auto{
Tags: []string{"1.0", "1"},
},
Config: Config{
Username: c.String("username"),
Password: c.String("password"),
-5
View File
@@ -38,10 +38,6 @@ type (
Started int64
}
Auto struct {
Tags []string
}
Config struct {
Username string
Password string
@@ -56,7 +52,6 @@ type (
Repo Repo
Build Build
Job Job
Auto Auto
Config Config
}
)