aboutsummaryrefslogtreecommitdiff
path: root/s3_worker_impl.cpp
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-09-13 20:53:56 +0800
committerMistivia <i@mistivia.com>2025-09-13 20:53:56 +0800
commita4daf467f871b0e77f07f1071b47b960da7bfba9 (patch)
tree43b8847b395a90f5aadb57593c0d84e2c13cca7c /s3_worker_impl.cpp
parentf3eeea1d7092f3ca98836035bf75b941d14c2067 (diff)
add s3 client
Diffstat (limited to 's3_worker_impl.cpp')
-rw-r--r--s3_worker_impl.cpp19
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