2020-12-11 02:11:49 +03:00
|
|
|
package file
|
|
|
|
|
|
|
|
import (
|
2023-08-14 23:50:12 +03:00
|
|
|
"go.unistack.org/micro/v4/options"
|
2020-12-11 02:11:49 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type pathKey struct{}
|
|
|
|
|
2023-08-14 23:50:12 +03:00
|
|
|
func Path(path string) options.Option {
|
|
|
|
return options.ContextOption(pathKey{}, path)
|
2021-11-18 16:12:12 +03:00
|
|
|
}
|