NewFileClient returns a client for the File from the given config.
(c config)
| 823 | |
| 824 | // NewFileClient returns a client for the File from the given config. |
| 825 | func NewFileClient(c config) *FileClient { |
| 826 | return &FileClient{config: c} |
| 827 | } |
| 828 | |
| 829 | // Use adds a list of mutation hooks to the hooks stack. |
| 830 | // A call to `Use(f, g, h)` equals to `file.Hooks(f(g(h())))`. |
no outgoing calls
no test coverage detected