mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 22:56:40 +00:00
13 lines
155 B
Go
13 lines
155 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package log
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
func normalizePath(p string) (string, error) {
|
|
return filepath.Abs(p)
|
|
}
|