Add feed aggregation and embedding generation features

This commit is contained in:
ImBenji
2025-12-12 10:35:26 +00:00
parent 00889301d9
commit 491bf2bbea
14 changed files with 1798 additions and 73 deletions

View File

@@ -6,11 +6,17 @@ import FlutterMacOS
import Foundation
import device_info_plus
import file_picker
import irondash_engine_context
import path_provider_foundation
import shared_preferences_foundation
import super_native_extensions
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
DeviceInfoPlusMacosPlugin.register(with: registry.registrar(forPlugin: "DeviceInfoPlusMacosPlugin"))
FilePickerPlugin.register(with: registry.registrar(forPlugin: "FilePickerPlugin"))
IrondashEngineContextPlugin.register(with: registry.registrar(forPlugin: "IrondashEngineContextPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
SuperNativeExtensionsPlugin.register(with: registry.registrar(forPlugin: "SuperNativeExtensionsPlugin"))
}