b1f8ac453b
feat!: base template * first bit of templating * codeowners * linuxbased * restart * baseline project * add grpc api and basic integration test * startqueue * queueMsg * splitscripts * migrations * queueintegrationtest * gateway
14 lines
174 B
Go
14 lines
174 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package wait
|
|
|
|
import (
|
|
"errors"
|
|
"syscall"
|
|
)
|
|
|
|
func isConnRefusedErr(err error) bool {
|
|
return errors.Is(err, syscall.ECONNREFUSED)
|
|
}
|