| 45 | } |
| 46 | |
| 47 | class GoogleDrive extends GoogleAuth { |
| 48 | constructor() { |
| 49 | super() |
| 50 | this.path = '/drive/api' |
| 51 | } |
| 52 | |
| 53 | async getFolderID(path) {} |
| 54 | |
| 55 | async infoFile(path) {} |
| 56 | |
| 57 | async folderList(path) {} |
| 58 | |
| 59 | async downloadFile(path) {} |
| 60 | |
| 61 | async uploadFile(path) {} |
| 62 | } |
| 63 | |
| 64 | export { GoogleAuth, GoogleDrive } |
nothing calls this directly
no outgoing calls
no test coverage detected