修复bug
This commit is contained in:
parent
6e7a2cc9ba
commit
275add19fd
3 changed files with 5 additions and 4 deletions
|
@ -29,5 +29,5 @@
|
|||
|
||||
- 自定义配置
|
||||
修改项目目录下的 `config.toml` 文件,`APIURL` 配置为 `go-cqhttp` 的 `post` 配置的 `url` 地址。
|
||||
`Port` 配置为 `go-cqhttp` 的 `http` 配置的 `address` 地址。
|
||||
`POSTURL` 配置为 `go-cqhttp` 的 `http` 配置的 `address` 地址。
|
||||
后面的 [Group] 按需求配置,注意里面的群名要加双引号,因为程序里读取的是 `string` 类型。
|
|
@ -8,8 +8,8 @@ import (
|
|||
|
||||
type Config struct {
|
||||
Server struct {
|
||||
APIURL string
|
||||
Port string
|
||||
APIURL string
|
||||
POSTURL string
|
||||
}
|
||||
Group struct {
|
||||
AllowGroup []string
|
||||
|
@ -28,6 +28,7 @@ var GlobalConfig Config
|
|||
func init() {
|
||||
// var config Config
|
||||
if _, err := toml.DecodeFile("config.toml", &GlobalConfig); err != nil {
|
||||
println("配置文件不正确,请修改正确的配置文件!")
|
||||
log.Fatal(err)
|
||||
}
|
||||
// fmt.Println(config.Group)
|
||||
|
|
|
@ -99,7 +99,7 @@ func (s *StdAns) SendMsg(msg string) bool {
|
|||
}
|
||||
fmt.Println(string(re))
|
||||
|
||||
url := config.GlobalConfig.Server.APIURL
|
||||
url := config.GlobalConfig.Server.POSTURL
|
||||
// println("core:", url)
|
||||
fmt.Println("请求地址:", url)
|
||||
fmt.Println("响应信息:", msg)
|
||||
|
|
Loading…
Reference in a new issue