mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-14 10:56:47 +00:00
Signed-off-by: Nitishkumar Singh <nitishkumarsingh71@gmail.com> updated go version Signed-off-by: Nitishkumar Singh <nitishkumarsingh71@gmail.com>
13 lines
268 B
Go
Generated
13 lines
268 B
Go
Generated
// Copyright 2022 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !go1.19
|
|
// +build !go1.19
|
|
|
|
package execabs
|
|
|
|
func isGo119ErrDot(err error) bool {
|
|
return false
|
|
}
|