storj/lib/uplinkc/testdata/project_test.c
2019-06-15 13:23:12 +02:00

17 lines
307 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 "helpers2.h"
void handle_project(ProjectRef project)
{};
int main(int argc, char *argv[]) {
with_test_project(&handle_project);
}