storj/lib/uplinkc/testdata/project_test.c

17 lines
307 B
C
Raw Normal View History

2019-06-15 12:23:12 +01:00
// 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);
}