mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-11-30 02:38:17 +08:00
14 lines
464 B
Go
14 lines
464 B
Go
package handler
|
|
|
|
import (
|
|
api_model "github.com/goodrain/rainbond/api/model"
|
|
"github.com/goodrain/rainbond/api/util"
|
|
)
|
|
|
|
type HelmHandler interface {
|
|
CommandHelm(command string) (*api_model.HelmCommandRet, *util.APIHandleError)
|
|
AddHelmRepo(helmRepo api_model.CheckHelmApp) error
|
|
CheckHelmApp(checkHelmApp api_model.CheckHelmApp) (string, error)
|
|
GetChartInformation(chart api_model.ChartInformation) (*[]api_model.HelmChartInformation, *util.APIHandleError)
|
|
}
|