mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-31 11:52:41 +00:00
9 lines
120 B
Go
9 lines
120 B
Go
//go:build !windows
|
|
|
|
package ole
|
|
|
|
// errstr converts error code to string.
|
|
func errstr(errno int) string {
|
|
return ""
|
|
}
|