mirror of
https://github.com/rzuasti/oott.git
synced 2026-07-08 19:21:54 +02:00
Implements the /about route with app description, version info, clickable links to the source repo and AGPL-3.0 license, and third-party copyright notices. Adds url_launcher for cross-platform link handling. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
477 B
C++
18 lines
477 B
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <encrypter/encrypter_plugin_c_api.h>
|
|
#include <url_launcher_windows/url_launcher_windows.h>
|
|
|
|
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
|
EncrypterPluginCApiRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("EncrypterPluginCApi"));
|
|
UrlLauncherWindowsRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
|
|
}
|