mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
11 lines
208 B
C++
11 lines
208 B
C++
#include "JsonUnknown.h"
|
|
|
|
Poco::JSON::Object JsonUnknown::handle(Poco::Dynamic::Var params)
|
|
{
|
|
Poco::JSON::Object result;
|
|
|
|
result.set("state", "error");
|
|
result.set("msg", "unknown call");
|
|
|
|
return result;
|
|
} |