core.go 117 B

12345678910
  1. package core
  2. import "context"
  3. type GrafanaServer interface {
  4. context.Context
  5. }
  6. type GrafanaServerImpl struct {
  7. }