Implement a server controller to provide a search API

This commit is contained in:
Luis Ángel San Martín
2023-04-07 10:51:34 +02:00
parent 5c0b5c7430
commit 4198b5ca3a
4 changed files with 135 additions and 0 deletions

View File

@ -9,6 +9,7 @@ DEPENDPATH += $$PWD/controllers/v2
HEADERS += \
$$PWD/controllers/v2/searchcontroller_v2.h \
$$PWD/static.h \
$$PWD/requestmapper.h \
$$PWD/yacreader_http_server.h \
@ -53,6 +54,7 @@ HEADERS += \
SOURCES += \
$$PWD/controllers/v2/searchcontroller_v2.cpp \
$$PWD/static.cpp \
$$PWD/requestmapper.cpp \
$$PWD/yacreader_http_server.cpp \