From ed729f994f55fe2bdbfa824689afab82d3ac87c7 Mon Sep 17 00:00:00 2001 From: mrfoxygmfr Date: Wed, 21 May 2025 02:35:58 +0300 Subject: feat(lib): implement controller and worker in library --- lib/common.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/common.h') diff --git a/lib/common.h b/lib/common.h index 2ffbc9b..ab6c05d 100644 --- a/lib/common.h +++ b/lib/common.h @@ -9,7 +9,11 @@ #include #include #include +#include -#define COMMON_CONST 1 +enum { + REQUEST_TYPE_GET_TASK, + REQUEST_TYPE_PUT_RESULT, +}; #endif // COMMON_H -- cgit mrf-deployment