first commit

This commit is contained in:
Sockenklaus
2021-10-16 21:31:35 +02:00
commit 4acf451351
28 changed files with 13523 additions and 0 deletions

23
contracts/drive.ts Normal file
View File

@@ -0,0 +1,23 @@
/**
* Contract source: https://git.io/JBt3I
*
* Feel free to let us know via PR, if you find something broken in this contract
* file.
*/
declare module '@ioc:Adonis/Core/Drive' {
interface DisksList {
local: {
config: LocalDriverConfig
implementation: LocalDriverContract
}
// s3: {
// config: S3DriverConfig
// implementation: S3DriverContract
// }
// gcs: {
// config: GcsDriverConfig
// implementation: GcsDriverContract
// }
}
}