14 lines
322 B
C
14 lines
322 B
C
//
|
|
// builder.c
|
|
// c-ipfs
|
|
//
|
|
// Created by John Jones on 10/27/16.
|
|
// Copyright © 2016 JMJAtlanta. All rights reserved.
|
|
//
|
|
|
|
#include "ipfs/core/builder.h"
|
|
|
|
int ipfs_core_builder_new_node(struct Context* context, struct BuildCfg* build_cfg, struct IpfsNode* buildConfig) {
|
|
// TODO: Implement this method
|
|
return 1;
|
|
}
|