LibreWeb-Browser/src/ipfs.h

15 lines
184 B
C
Raw Normal View History

2020-12-06 16:15:31 -08:00
#ifndef IPFS_H
#define IPFS_H
2020-12-14 10:40:08 -08:00
#include <string>
2020-12-06 16:15:31 -08:00
/**
* \class IPFS
* \brief Helper class to start/stop IPFS deamon
*/
class IPFS
{
public:
2020-12-14 10:40:08 -08:00
static int startIPFSDaemon();
2020-12-06 16:15:31 -08:00
};
#endif