2023-11-27 09:36:02 +00:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"{{.ProjectName}}/server/config"
|
|
|
|
"fusen-basic/env"
|
|
|
|
"fusen-basic/utils/log"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
2023-11-28 09:19:02 +00:00
|
|
|
"time"
|
2023-11-27 09:36:02 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var fusen *env.Fusen[config.Config]
|
2023-12-06 04:08:20 +00:00
|
|
|
var gatewayAddrress = "http://localhost:9900"
|