templatefile/pkg/templater/repo-helm.go

24 lines
400 B
Go
Raw Normal View History

2022-06-27 15:58:37 +02:00
package templater
type HelmRepository struct {
Name string `json:"name"`
Type string `json:"type"`
URL string `json:"url"`
Enabled bool `json:"enabled"`
}
func (hr *HelmRepository) Add() error {
return nil
}
func (hr *HelmRepository) Update() error {
return nil
}
func (hr *HelmRepository) Delete() error {
return nil
}
func (hr *HelmRepository) Manage() error {
return nil
}