docs(webrtc_controller_flutter): 更新项目文档以反映重构后的架构
AGENTS.md 与 README.md 同步更新:根据实际代码结构重写目录树、技术栈、架构分层及编码规范,移除旧版内联示例并补充新的开发约定与代码生成命令。
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
|
||||
import '../domain/auth_repository.dart';
|
||||
import 'dio_auth_repository.dart';
|
||||
|
||||
/// 认证仓库单例(登录 / 刷新 / 绑定列表 / TURN 凭证)。
|
||||
final authRepositoryProvider = Provider<AuthRepository>((ref) {
|
||||
return DioAuthRepository();
|
||||
});
|
||||
Reference in New Issue
Block a user