add context helpers

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2020-12-07 16:10:20 +03:00
parent b5d3b699cf
commit c6fd9c1c23
9 changed files with 115 additions and 53 deletions

View File

@@ -17,7 +17,7 @@ func NewContext(ctx context.Context, s Server) context.Context {
return context.WithValue(ctx, serverKey{}, s)
}
// Setoption returns a function to setup a context with given value
// SetOption returns a function to setup a context with given value
func SetOption(k, v interface{}) Option {
return func(o *Options) {
if o.Context == nil {