blob: f2867130342e51dd20afc42a274c95a4510cdc33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "ex.h"
#include "logger.h"
#include "response.h"
static Logger *global_log = Logger::getInstance();
Response EX::advance()
{
global_log->log(INFO, "hello from execute!");
return OK;
}
|