fixup! refactor: move executor function into it's own file

This commit is contained in:
2024-08-26 18:40:23 +02:00
parent 05701d9d85
commit 0f1aa982f4
5 changed files with 113 additions and 92 deletions

7
include/executor.h Normal file
View File

@ -0,0 +1,7 @@
#ifndef SCI_EXECUTOR_H
#define SCI_EXECUTOR_H
void executor(void* pipeline_event);
void set_logdir(const char* logdir);
#endif