You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
551 B
Go
34 lines
551 B
Go
3 years ago
|
/**
|
||
|
* @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)
|
||
|
})
|
||
|
|
||
|
}
|