#8 Finished the update I need to redo the call of these methods.

This commit is contained in:
Gorbunov Kirill Andreevich
2024-03-15 21:18:58 +03:00
parent f559bc86b8
commit e57e1ff82e
11 changed files with 152 additions and 57 deletions

View File

@@ -13,3 +13,9 @@ type Source struct {
APIURL string `json:"apiurl" yaml:"apiurl"`
Repository string `json:"repository" yaml:"repository"`
}
func NewConfig() *Config {
return &Config{
Source: &Source{},
}
}