修复bug

This commit is contained in:
liyp 2024-04-03 22:07:38 +08:00
parent 6e7a2cc9ba
commit 275add19fd
3 changed files with 5 additions and 4 deletions

View file

@ -29,5 +29,5 @@
- 自定义配置
修改项目目录下的 `config.toml` 文件,`APIURL` 配置为 `go-cqhttp``post` 配置的 `url` 地址。
`Port` 配置为 `go-cqhttp``http` 配置的 `address` 地址。
`POSTURL` 配置为 `go-cqhttp``http` 配置的 `address` 地址。
后面的 [Group] 按需求配置,注意里面的群名要加双引号,因为程序里读取的是 `string` 类型。

View file

@ -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)

View file

@ -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)