13 lines
207 B
C
13 lines
207 B
C
#ifndef APIROUTES_H
|
|
#define APIROUTES_H
|
|
|
|
#include <QString>
|
|
|
|
// TODO add namespace
|
|
|
|
static const QString apiPrefix = "/api/";
|
|
|
|
static const QString ROUTE_ITEMS = apiPrefix + "items";
|
|
|
|
#endif // APIROUTES_H
|