URLScriptHandler handles script download using URL.
| 31 | |
| 32 | // URLScriptHandler handles script download using URL. |
| 33 | type URLScriptHandler struct { |
| 34 | URL string |
| 35 | DestinationDir string |
| 36 | Download Downloader |
| 37 | FS fs.FileSystem |
| 38 | Name string |
| 39 | } |
| 40 | |
| 41 | const ( |
| 42 | sourcesRootAbbrev = "<source-dir>" |
nothing calls this directly
no outgoing calls
no test coverage detected