chart_handler.go 250 B

123456789101112
  1. package api
  2. import "net/http"
  3. // TODO -- IMPLEMENT
  4. func (app *App) HandleListCharts(w http.ResponseWriter, r *http.Request) {
  5. // get the user id
  6. // create a client config using the app's helm/kubernetes agents
  7. // call the list charts method
  8. }