fix blocking routine

This commit is contained in:
octeep 2022-03-11 11:44:39 +00:00 committed by octeep
parent 9935eb6f60
commit 65b91aec83

View file

@ -347,6 +347,8 @@ func main() {
}
for _, netRoutine := range routines {
netRoutine(tnet)
go netRoutine(tnet)
}
select{} // sleep etnerally
}