blob: 1026072f79bb3d4af3b2e200faf9e9c4cb36fd93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "if.h"
#include "logger.h"
#include "response.h"
static Logger *global_log = Logger::getInstance();
Response IF::advance()
{
global_log->log(INFO, "hello from fetch!");
return OK;
}
|