22 lines
472 B
C
22 lines
472 B
C
#ifndef __CONFIG_H__
|
|
#define __CONFIG_H__
|
|
|
|
#include "datastore.h"
|
|
|
|
struct config {
|
|
//struct identity identity;
|
|
struct datastore datastore;
|
|
//struct address* addresses;
|
|
//struct mount* mounts;
|
|
//struct discovery discovery;
|
|
//struct ipns ipns;
|
|
//struct bootstrap* peer_addresses;
|
|
//struct tour tour;
|
|
//struct gateway gateway;
|
|
//struct supernode_routing supernode_client_config;
|
|
//struct api api;
|
|
//struct swarm swarm;
|
|
//struct reprovider reprovider;
|
|
};
|
|
|
|
#endif
|