feat: 增加客服2

This commit is contained in:
2026-01-13 01:19:13 -08:00
parent 2ea6cd2379
commit 1d2a89a80a
7 changed files with 101 additions and 1 deletions
@@ -0,0 +1,12 @@
import 'package:get/get.dart';
import '../controllers/kr_chatwoot_controller.dart';
/// 客服2Chatwoot)依赖绑定
class KRChatwootBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<KRChatwootController>(
() => KRChatwootController(),
);
}
}