mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
13 lines
217 B
Go
13 lines
217 B
Go
package api
|
|
|
|
// RunAsync runs the specified function asynchronously.
|
|
func RunAsync(f func() error) <-chan error {
|
|
resp := make(chan error, 1)
|
|
go func() {
|
|
err := f()
|
|
resp <- err
|
|
close(resp)
|
|
}()
|
|
return resp
|
|
}
|