mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
24 lines
771 B
C++
24 lines
771 B
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <flowy_editor/flowy_editor_plugin.h>
|
|
#include <flowy_infra_ui/flowy_infra_u_i_plugin.h>
|
|
#include <url_launcher_windows/url_launcher_plugin.h>
|
|
#include <window_size/window_size_plugin.h>
|
|
|
|
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
|
FlowyEditorPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("FlowyEditorPlugin"));
|
|
FlowyInfraUIPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("FlowyInfraUIPlugin"));
|
|
UrlLauncherPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("UrlLauncherPlugin"));
|
|
WindowSizePluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("WindowSizePlugin"));
|
|
}
|