NewProjectClient returns a client for the Project from the given config.
(c config)
| 2348 | |
| 2349 | // NewProjectClient returns a client for the Project from the given config. |
| 2350 | func NewProjectClient(c config) *ProjectClient { |
| 2351 | return &ProjectClient{config: c} |
| 2352 | } |
| 2353 | |
| 2354 | // Use adds a list of mutation hooks to the hooks stack. |
| 2355 | // A call to `Use(f, g, h)` equals to `project.Hooks(f(g(h())))`. |
no outgoing calls
no test coverage detected