diff options
Diffstat (limited to 's3_worker_impl.cpp')
| -rw-r--r-- | s3_worker_impl.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/s3_worker_impl.cpp b/s3_worker_impl.cpp new file mode 100644 index 0000000..ccfe7e0 --- /dev/null +++ b/s3_worker_impl.cpp @@ -0,0 +1,19 @@ +#include "s3_worker.h" + +#include <aws/core/Aws.h> +#include <aws/s3/S3Client.h> +#include <aws/s3/model/PutObjectRequest.h> + +void *s3client; + +void s3client_init() { + +} + +void s3client_put(const char *filename, const char *object_name) { + +} + +void s3client_delete(const char *object_name) { + +}
\ No newline at end of file |
