feat: add heartbeat capability

This commit is contained in:
Mudit Vats
2021-03-23 14:00:49 -07:00
parent 5b5a480943
commit a8e1bc89f0
5 changed files with 80 additions and 1 deletions

13
heartbeat.h Normal file
View File

@@ -0,0 +1,13 @@
/*********************************************************************
* Copyright (c) Intel Corporation 2019 - 2020
* SPDX-License-Identifier: Apache-2.0
**********************************************************************/
#ifndef __HEARTBEAT_H__
#define __HEARTBEAT_H__
#include <string>
bool heartbeat_create_response(std::string& response);
#endif