mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 19:30:36 -06:00
11 lines
129 B
Go
11 lines
129 B
Go
package models
|
|
|
|
import "context"
|
|
|
|
type GrafanaServer interface {
|
|
context.Context
|
|
|
|
Start()
|
|
Shutdown(code int, reason string)
|
|
}
|