configuration.go 177 B

1234567891011
  1. package configuration
  2. type Cfg struct {
  3. httpPort string
  4. DashboardSource DashboardSourceCfg
  5. }
  6. type DashboardSourceCfg struct {
  7. sourceType string
  8. path string
  9. }