service.go 97 B

1234567
  1. package server
  2. import "net/http"
  3. type Service interface {
  4. GetMeta() map[string]http.Handler
  5. }