NewCASBackendClient returns a client for the CASBackend from the given config.
(c config)
| 703 | |
| 704 | // NewCASBackendClient returns a client for the CASBackend from the given config. |
| 705 | func NewCASBackendClient(c config) *CASBackendClient { |
| 706 | return &CASBackendClient{config: c} |
| 707 | } |
| 708 | |
| 709 | // Use adds a list of mutation hooks to the hooks stack. |
| 710 | // A call to `Use(f, g, h)` equals to `casbackend.Hooks(f(g(h())))`. |
no outgoing calls
no test coverage detected