NewGroupClient returns a client for the Group from the given config.
(c config)
| 1236 | |
| 1237 | // NewGroupClient returns a client for the Group from the given config. |
| 1238 | func NewGroupClient(c config) *GroupClient { |
| 1239 | return &GroupClient{config: c} |
| 1240 | } |
| 1241 | |
| 1242 | // Use adds a list of mutation hooks to the hooks stack. |
| 1243 | // A call to `Use(f, g, h)` equals to `group.Hooks(f(g(h())))`. |
no outgoing calls
no test coverage detected