DodoApp: Use picocss for UI
Change-Id: I2d610c4f57e4dfbbe566a7c7f82147443e0106f1
diff --git a/core/installer/app.go b/core/installer/app.go
index dcd2ca2..d2c5d00 100644
--- a/core/installer/app.go
+++ b/core/installer/app.go
@@ -454,7 +454,7 @@
"release": release,
"input": derived,
"localCharts": charts,
- "networks": networkMap(networks),
+ "networks": NetworkMap(networks),
})
if err != nil {
return EnvAppRendered{}, err
@@ -529,7 +529,7 @@
return strings.Join(tmp, ",")
}
-func networkMap(networks []Network) map[string]Network {
+func NetworkMap(networks []Network) map[string]Network {
ret := make(map[string]Network)
for _, n := range networks {
ret[strings.ToLower(n.Name)] = n