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"
|
2019-06-21 13:24:06 +01:00
|
|
|
#include "helpers.h"
|
2019-06-15 12:23:12 +01:00
|
|
|
|
|
|
|
void handle_project(ProjectRef project)
|
|
|
|
{};
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
2019-06-21 13:24:06 +01:00
|
|
|
with_test_project(&handle_project, NULL);
|
2019-06-15 12:23:12 +01:00
|
|
|
}
|