◦ Go Concurrency Patterns: Context - go.dev • Go blogより引用 ◦ At Google, we developed a context package that makes it easy to pass request-scoped values, cancelation signals, and deadlines across API boundaries to all the goroutines involved in handling a request. • つまり、contextには大きく以下の役割がある ◦ request-scopedなvalueを渡す役割 ◦ 複数のgoroutineについてcancelやdeadlineを伝搬させる 前提: Goでのcontextについて