This commit is contained in:
2021-12-17 19:08:29 +08:00
parent 627c6582e3
commit 179c6a3afa
3 changed files with 116 additions and 0 deletions

View File

@@ -57,3 +57,6 @@ func Send(text string) error {
}
return nil
}

33
msg/msg_test.go Normal file
View File

@@ -0,0 +1,33 @@
/**
* @Author: jager
* @Email: lhj168os@gmail.com
* @File: msg_test
* @Date: 2021/12/17 5:56 下午
* @package: msg
* @Version: v1.0.0
*
* @Description:
*
*/
package msg
import (
"github.com/jageros/hawox/httpc"
"stock/stock"
"testing"
)
func Test_Post(t *testing.T) {
url := ""
stk, err := stock.NewStocks(600905)
if err != nil {
t.Error(err)
return
}
stk.ForEachStock(func(stk stock.IArg) {
arg := stk.Arg("o-KDV6NbRaanYz55fJuSgyR0qxxU")
httpc.RequestWithInterface(httpc.POST, url, httpc.JSON, arg, nil)
})
}