2026-01-25 10:47:19 +01:00
|
|
|
#ifndef APIROUTES_H
|
|
|
|
|
#define APIROUTES_H
|
|
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
|
|
// TODO add namespace
|
|
|
|
|
|
|
|
|
|
static const QString apiPrefix = "/api/";
|
|
|
|
|
|
2026-05-08 14:44:40 +02:00
|
|
|
static const QString ROUTE_LOG_IN = apiPrefix + "log_in";
|
|
|
|
|
|
2026-01-25 10:47:19 +01:00
|
|
|
static const QString ROUTE_ITEMS = apiPrefix + "items";
|
|
|
|
|
|
|
|
|
|
#endif // APIROUTES_H
|