mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 11:48:04 +00:00
* Start working on web server * Some restructure * Serving static works * Fix linter complaint * Enable local dev * Static files served fine * Tidy
17 lines
275 B
Go
17 lines
275 B
Go
package dashboard
|
|
|
|
import (
|
|
"helm.sh/helm/v3/pkg/release"
|
|
)
|
|
|
|
type DataLayer struct {
|
|
}
|
|
|
|
func (l *DataLayer) CheckConnectivity() {
|
|
// TODO: check that we can work with context and subcommands
|
|
}
|
|
|
|
func (l *DataLayer) ListInstalled() []*release.Release {
|
|
return nil // TODO
|
|
}
|