2016-10-27 13:11:34 -05:00
|
|
|
//
|
|
|
|
// builder.c
|
|
|
|
// c-ipfs
|
|
|
|
//
|
|
|
|
// Created by John Jones on 10/27/16.
|
|
|
|
// Copyright © 2016 JMJAtlanta. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2016-10-31 11:13:42 -05:00
|
|
|
#include "ipfs/core/builder.h"
|
2016-10-27 13:11:34 -05:00
|
|
|
|
2016-11-10 16:36:34 -05:00
|
|
|
int ipfs_core_builder_new_node(struct Context* context, struct BuildCfg* build_cfg, struct IpfsNode* buildConfig) {
|
|
|
|
// TODO: Implement this method
|
2016-11-10 08:28:51 -05:00
|
|
|
return 1;
|
2016-10-27 13:11:34 -05:00
|
|
|
}
|