server.go 93 B

123456
  1. package models
  2. type GrafanaServer interface {
  3. Start()
  4. Shutdown(code int, reason string)
  5. }