mirror of
https://gitee.com/lauix/HFish
synced 2025-05-12 04:48:01 +08:00
25 lines
398 B
Go
25 lines
398 B
Go
|
package json
|
||
|
|
||
|
import (
|
||
|
"github.com/bitly/go-simplejson"
|
||
|
"HFish/utils/log"
|
||
|
"io/ioutil"
|
||
|
)
|
||
|
|
||
|
var telnetJson []byte
|
||
|
|
||
|
func init() {
|
||
|
file, err := ioutil.ReadFile("./libs/telnet/config.json")
|
||
|
|
||
|
if err != nil {
|
||
|
log.Pr("HFish", "127.0.0.1", "读取文件失败", err)
|
||
|
}
|
||
|
|
||
|
telnetJson = file
|
||
|
}
|
||
|
|
||
|
func GetTelnet() (*simplejson.Json, error) {
|
||
|
res, err := simplejson.NewJson(telnetJson)
|
||
|
return res, err
|
||
|
}
|