mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-23 00:19:31 -04:00
In order to have different sets of endpoints for different products, we need to separate endpoints from the desktop service.
14 lines
376 B
C++
14 lines
376 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "service-desktop/DesktopEvent.hpp"
|
|
#include <endpoints/message/Sender.hpp>
|
|
|
|
namespace sdesktop
|
|
{
|
|
void Event::send()
|
|
{
|
|
endpoints::sender::putToSendQueue(context.createSimpleResponse());
|
|
}
|
|
} // namespace sdesktop
|