context প্যাকেজ বাতিলকরণ সংকেত, সময়সীমা এবং অনুরোধ-স্কোপ মানগুলি API সীমানা এবং goroutines জুড়ে বহন করে। এটি অপারেশনের আজীবন নিয়ন্ত্রণের জন্য মান সংস্থা — বিশেষত কাজ বাতিল করার এবং ফাংশন কলের একটি শৃঙ্খলে সময়সীমা প্রচার করার জন্য।
এটি যে মূল সমস্যা সমাধান করে
A request starts work across many goroutines/functions (DB query, API call, etc.).
If the client disconnects or a timeout hits, you want to CANCEL all that work
so goroutines don't keep running uselessly (wasting resources / leaking).
→ context propagates the "stop now" signal down the entire call chain.
