gitea-sonarqube-bot/internal/settings/gitea.go
justusbunsi 21837f9b25
Export webhook and token struct
Signed-off-by: Steven Kriegler <sk.bunsenbrenner@gmail.com>
2021-10-17 16:01:15 +02:00

13 lines
157 B
Go

package settings
type GiteaRepository struct {
Owner string
Name string
}
type giteaConfig struct {
Url string
Token *Token
Webhook *Webhook
}