返回 DeepSeek-Reasonix
test_hooks.go
根目录 / internal / provider / responses / test_hooks.go
1 package responses
2
3 var sendChunkEnterBlocking func()
4
5 func notifySendChunkEnterBlocking() {
6 if sendChunkEnterBlocking != nil {
7 sendChunkEnterBlocking()
8 }
9 }
10
10 lines GO