NewGroupClient returns a client for the Group from the given config.
(c config)
| 1049 | |
| 1050 | // NewGroupClient returns a client for the Group from the given config. |
| 1051 | func NewGroupClient(c config) *GroupClient { |
| 1052 | return &GroupClient{config: c} |
| 1053 | } |
| 1054 | |
| 1055 | // Use adds a list of mutation hooks to the hooks stack. |
| 1056 | // A call to `Use(f, g, h)` equals to `group.Hooks(f(g(h())))`. |
no outgoing calls
no test coverage detected