mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
12 lines
177 B
Go
12 lines
177 B
Go
package configuration
|
|
|
|
type Cfg struct {
|
|
httpPort string
|
|
DashboardSource DashboardSourceCfg
|
|
}
|
|
|
|
type DashboardSourceCfg struct {
|
|
sourceType string
|
|
path string
|
|
}
|