05 2022 档案
摘要:package main import ( "flag" "fmt" "net/http" "strings" ) func sendMsg(apiUrl, msg string) { // json contentType := "application/json" // data sendDat
阅读全文
摘要:package main import ( "io" "log" "net/http" ) const form = `<html><body><form action="#" method="post" name="bar"> <input type="text" name="in"/> <inp
阅读全文
摘要:package main import ( "fmt" "net" "net/http" "time" ) var url = []string{ "http://www.baidu.com", "http://google.com", "http://taobao.com", } func mai
阅读全文