mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-25 03:37:11 +00:00
28 lines
594 B
C++
28 lines
594 B
C++
|
/*
|
||
|
This file is part of Telegram Desktop,
|
||
|
the official desktop application for the Telegram messaging service.
|
||
|
|
||
|
For license and copyright information please follow this link:
|
||
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||
|
*/
|
||
|
#include "api/api_statistics.h"
|
||
|
|
||
|
#include "apiwrap.h"
|
||
|
#include "data/data_peer.h"
|
||
|
#include "main/main_session.h"
|
||
|
|
||
|
namespace Api {
|
||
|
namespace {
|
||
|
} // namespace
|
||
|
|
||
|
Statistics::Statistics(not_null<ApiWrap*> api)
|
||
|
: _api(&api->instance()) {
|
||
|
}
|
||
|
|
||
|
rpl::producer<> Statistics::request(
|
||
|
not_null<PeerData*> peer) const {
|
||
|
return rpl::never<>();
|
||
|
}
|
||
|
|
||
|
} // namespace Api
|