2019-05-31 01:52:10 +03:00
|
|
|
package http
|
|
|
|
|
2023-04-11 22:20:37 +03:00
|
|
|
import "go.unistack.org/micro/v4/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
|
|
|
}
|
|
|
|
}
|