f5/sysutils_unix.go
aozhiwei e5653a91a1 1
2024-08-03 16:25:29 +08:00

13 lines
150 B
Go

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