Add init command

This commit is contained in:
Miguel de la Cruz 2020-02-29 00:49:55 +01:00
parent d7a4b25950
commit 573ea9e136
5 changed files with 39 additions and 9 deletions

5
model/campaign.go Normal file
View file

@ -0,0 +1,5 @@
package model
type Campaign struct {
Epic string `json:"epic"`
}

6
model/config.go Normal file
View file

@ -0,0 +1,6 @@
package model
type Config struct {
GithubToken string `json:"github_token"`
JiraToken string `json:"jira_token"`
}