Pusher is an interface to support upload to the specified URL.
| 71 | |
| 72 | // Pusher is an interface to support upload to the specified URL. |
| 73 | type Pusher interface { |
| 74 | // Push file content by url string |
| 75 | Push(chartRef, url string, options ...Option) error |
| 76 | } |
| 77 | |
| 78 | // Constructor is the function for every pusher which creates a specific instance |
| 79 | // according to the configuration |