Files
xianyan/web/drift_worker.dart
Developer 72f64f9ca9 feat: 新增文件传输助手功能及相关组件
新增文件传输助手功能,包含设备发现、配对、传输等核心模块。主要变更包括:
1. 新增局域网、蓝牙、NFC等多种设备发现方式
2. 实现基于WebRTC、TCP、USB等多种传输协议
3. 添加相关权限管理及状态监控
4. 完善UI界面及交互流程
5. 更新依赖库及版本号至4.19.0

同时优化部分现有功能:
1. 聊天会话增加隐藏功能
2. 完善本地通知权限处理
3. 修复部分已知问题
2026-05-10 02:48:52 +08:00

14 lines
444 B
Dart
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/// ============================================================
/// 闲言APP — Drift Web Worker入口
/// 创建时间: 2026-05-08
/// 更新时间: 2026-05-08
/// 作用: Web Worker入口用于drift WASM数据库
/// 上次更新: 初始创建使用WasmDatabase.workerMainForOpen
/// ============================================================
import 'package:drift/wasm.dart';
void main() {
WasmDatabase.workerMainForOpen();
}