2019-05-31 01:52:10 +03:00
|
|
|
package http
|
|
|
|
|
2021-10-02 19:55:07 +03:00
|
|
|
import "go.unistack.org/micro/v3/router"
|
2019-05-31 01:52:10 +03:00
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// Options struct
|
2019-05-31 01:52:10 +03:00
|
|
|
type Options struct {
|
2020-07-01 19:06:59 +03:00
|
|
|
Router router.Router
|
2019-05-31 01:52:10 +03:00
|
|
|
}
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// Option func
|
2019-05-31 01:52:10 +03:00
|
|
|
type Option func(*Options)
|
|
|
|
|
2020-11-03 01:08:23 +03:00
|
|
|
// WithRouter sets the router.Router option
|
2020-07-01 19:06:59 +03:00
|
|
|
func WithRouter(r router.Router) Option {
|
2019-05-31 01:52:10 +03:00
|
|
|
return func(o *Options) {
|
2020-07-01 19:06:59 +03:00
|
|
|
o.Router = r
|
2019-05-31 01:52:10 +03:00
|
|
|
}
|
|
|
|
}
|