summaryrefslogtreecommitdiff
path: root/pkg/cfg/mux.go
blob: 6c6f4375589cd2755b63a399164f38cd92f64cc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
package cfg

import (
	"net/http"
)

func WithMux(mux http.Handler) Option {
	return func(config *Config) {
		config.Mux = mux
	}
}