/* * Copyright (C) 2013-2026 Jolla Ltd. */ #include "mastodonshareplugin.h" #include "mastodonplugininfo.h" #include MastodonSharePlugin::MastodonSharePlugin() : QObject(), SharingPluginInterface() { } MastodonSharePlugin::~MastodonSharePlugin() { } SharingPluginInfo *MastodonSharePlugin::infoObject() { return new MastodonPluginInfo; } QString MastodonSharePlugin::pluginId() const { return QLatin1String("Mastodon"); }