aboutsummaryrefslogtreecommitdiff
path: root/s3_worker_impl.cpp
blob: ccfe7e092edb2da7bf9983ee11ac8885c1cd10fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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) {

}