地方エンジニアの学習日記

興味ある技術の雑なメモだったりを書いてくブログ。たまに日記とガジェット紹介。

2022-01-02から1日間の記事一覧

【Go】NewRequestWithContextを試す

package main import ( "context" "net/http" "time" ) func main() { ctx := context.Background() ctx, cancel := context.WithCancel(ctx) req, _ := http.NewRequestWithContext(ctx, "GET", "http://httpbin.org/delay/3", nil) // it will return late…