main
 1package cfg
 2
 3import (
 4	"net/http"
 5)
 6
 7func WithMux(mux http.Handler) Option {
 8	return func(config *Config) {
 9		config.Mux = mux
10	}
11}