From fd9d08e758a83cacccab98747d42479a83906943 Mon Sep 17 00:00:00 2001 From: Hamees Sayed <98336593+hamees-sayed@users.noreply.github.com> Date: Wed, 5 Oct 2022 05:21:38 +0530 Subject: [PATCH] added content and resources to golang node (context) (#1954) * added content and resources to golang node * Update content/roadmaps/109-golang/content/101-go-advanced/104-context.md Co-authored-by: Kamran Ahmed --- .../109-golang/content/101-go-advanced/104-context.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/109-golang/content/101-go-advanced/104-context.md b/content/roadmaps/109-golang/content/101-go-advanced/104-context.md index cced069fd..223b2c9e8 100644 --- a/content/roadmaps/109-golang/content/101-go-advanced/104-context.md +++ b/content/roadmaps/109-golang/content/101-go-advanced/104-context.md @@ -1 +1,8 @@ -# Context \ No newline at end of file +# Context + +The `context` package provides a standard way to solve the problem of managing state during a request. The package satisfies the need for request scoped data and provides a standardized way to handle: Deadlines, Cancellation Signals, etc. + +Free Content +Understanding Contexts in Go +DigitalOcean: How to Use Contests in Go +Go by Example: Context \ No newline at end of file