Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GraphExplorer ¶
type GraphExplorer struct {
// contains filtered or unexported fields
}
GraphExplorer defines implements the business logic for Service.
func (GraphExplorer) ConfigJs ¶
func (p GraphExplorer) ConfigJs(w http.ResponseWriter, r *http.Request)
ConfigJs implements the Service interface.
func (GraphExplorer) ServeHTTP ¶
func (p GraphExplorer) ServeHTTP(w http.ResponseWriter, r *http.Request)
ServeHTTP implements the Service interface.
func (GraphExplorer) Static ¶
func (p GraphExplorer) Static() http.HandlerFunc
Static simply serves all static files.
type Option ¶
type Option func(o *Options)
Option defines a single option function.
type Options ¶
type Options struct { Logger log.Logger Config *config.Config Middleware []func(http.Handler) http.Handler }
Options defines the available options for this package.
type Service ¶
type Service interface { ServeHTTP(http.ResponseWriter, *http.Request) ConfigJs(http.ResponseWriter, *http.Request) }
Service defines the service handlers.
func NewInstrument ¶
NewInstrument returns a service that instruments metrics.
func NewLogging ¶
NewLogging returns a service that logs messages.
func NewService ¶
NewService returns a service implementation for Service.
func NewTracing ¶
NewTracing returns a service that instruments traces.
Click to show internal directories.
Click to hide internal directories.