Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2026-05-12 19:12:29 +02:00
commit e8e64eff12
101 changed files with 10081 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
package intercept
import tea "charm.land/bubbletea/v2"
type RequestArrivedMsg struct{ Req *PendingRequest }
type ResponseArrivedMsg struct{ Resp *PendingResponse }
func WaitForRequest(b *Broker) tea.Cmd {
return func() tea.Msg {
return RequestArrivedMsg{Req: <-b.Incoming}
}
}
func WaitForResponse(b *Broker) tea.Cmd {
return func() tea.Msg {
return ResponseArrivedMsg{Resp: <-b.IncomingResponse}
}
}