1
0
mirror of https://github.com/ManyakRus/telegram_loki.git synced 2025-03-06 15:17:06 +02:00
2023-12-27 14:49:07 +03:00

27 lines
420 B
Go

package xsync
import (
"fmt"
"runtime/debug"
)
// Go allows running a function in another goroutine
// and waiting for its error.
func Go(fn func() error) <-chan error {
errs := make(chan error, 1)
go func() {
defer func() {
r := recover()
if r != nil {
select {
case errs <- fmt.Errorf("panic in go fn: %v, %s", r, debug.Stack()):
default:
}
}
}()
errs <- fn()
}()
return errs
}