|
12345678910111213 |
- package cfg
-
- import (
- "applet/app/utils"
- "code.fnuoos.com/go_rely_warehouse/zyos_go_es.git/es"
- "encoding/json"
- )
-
- func InitEs() {
- data, _ := json.Marshal(ES)
- utils.FilePutContents("init_es", string(data))
- es.Init(ES.Url, ES.User, ES.Pwd)
- }
|