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 }