LibreWeb-Browser/src/ipfs.h

15 lines
184 B
C++

#ifndef IPFS_H
#define IPFS_H
#include <string>
/**
* \class IPFS
* \brief Helper class to start/stop IPFS deamon
*/
class IPFS
{
public:
static int startIPFSDaemon();
};
#endif