/* 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 "platform/mac/integration_mac.h" #include "platform/platform_integration.h" namespace Platform { namespace { class MacIntegration final : public Integration { }; } // namespace std::unique_ptr CreateIntegration() { return std::make_unique(); } } // namespace Platform