storj/lib/uplinkc/testdata/project_test.c
Bryan White 5f47b7028d Uplink C bindings part 3 (#2258)
* add object upload and download
2019-06-21 08:24:06 -04:00

17 lines
312 B
C

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
#include <string.h>
#include <stdlib.h>
#include "require.h"
#include "uplink.h"
#include "helpers.h"
void handle_project(ProjectRef project)
{};
int main(int argc, char *argv[]) {
with_test_project(&handle_project, NULL);
}