13 lines
150 B
Go
13 lines
150 B
Go
//go:build unix
|
|
// +build unix
|
|
|
|
package f5
|
|
|
|
import(
|
|
"q5"
|
|
)
|
|
|
|
func ReadJsonFile(fileName string) (string, error) {
|
|
return q5.ReadTextFile(fileName)
|
|
}
|