diff options
Diffstat (limited to 'internal/config/repository.go')
-rw-r--r-- | internal/config/repository.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/internal/config/repository.go b/internal/config/repository.go index 44d8251..a074cbc 100644 --- a/internal/config/repository.go +++ b/internal/config/repository.go @@ -13,7 +13,7 @@ const ( ) type Repository struct { - Type string `toml:"" default:"github" comment:"Currently only 'github' is supported."` + Type RepoType `toml:"" default:"github" comment:"Currently only 'github' is supported."` Owner string Repo string Revision string `toml:"-"` @@ -43,3 +43,7 @@ func (f *RepoType) UnmarshalText(text []byte) error { return err } + +func (f *RepoType) MarshalText() ([]byte, error) { + return []byte(f.String()), nil +} |