NewSingleResolver creates a tenant resolver, which restricts all requests to be using a single tenant only. This allows a wider set of characters to be used within the tenant ID and should not impose a breaking change.
()
| 55 | // be using a single tenant only. This allows a wider set of characters to be |
| 56 | // used within the tenant ID and should not impose a breaking change. |
| 57 | func NewSingleResolver() *SingleResolver { |
| 58 | return &SingleResolver{} |
| 59 | } |
| 60 | |
| 61 | type SingleResolver struct { |
| 62 | } |
no outgoing calls