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