You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: data/gin-gonic.json
+99-71Lines changed: 99 additions & 71 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"id": "gin-gonic",
3
3
"title": "জিন-গনিক",
4
4
"slug": "Gin-Web-Framework",
5
-
"description": "জিন হল একটি HTTP ওয়েব ফ্রেমওয়ার্ক যা Go (গোলাং) এ লেখা। এটিতে মার্টিনির মতো এপিআই বৈশিষ্ট্য রয়েছে, তবে মার্টিনির চেয়ে 40 গুণ দ্রুত কর্মক্ষমতা সহ। আপনার যদি ভাল পারফরম্যান্সের প্রয়োজন হয় তবে গিন আপনার জন্য ।",
5
+
"description": "জিন হল একটি HTTP ওয়েব ফ্রেমওয়ার্ক যা Go (গোলাং) এ লেখা। এটিতে মার্টিনির মতো এপিআই বৈশিষ্ট্য রয়েছে, তবে মার্টিনির চেয়ে 40 গুণ দ্রুত কর্মক্ষমতা সহ। আপনার যদি ভাল পারফরম্যান্সের প্রয়োজন হয় তবে জিন আপনার জন্য ।",
6
6
"colorPref": "#3176d9",
7
7
"contents": [
8
8
{
@@ -12,15 +12,15 @@
12
12
"code": "go mod init github.com/<username>/<projectname>"
13
13
},
14
14
{
15
-
"definition": "গিন ইনস্টল",
15
+
"definition": "জিন ইনস্টল",
16
16
"code": "go get -u github.com/gin-gonic/gin"
17
17
},
18
18
{
19
19
"definition": "ফাইল তৈরি করা",
20
20
"code": "touch main.go"
21
21
},
22
22
{
23
-
"definition":"গিন ইম্পোর্ট করা",
23
+
"definition":"জিন ইম্পোর্ট করা",
24
24
"code":"import \"github.com/gin-gonic/gin\""
25
25
}
26
26
@@ -46,14 +46,14 @@
46
46
]
47
47
},
48
48
{
49
-
"title": "গিন রাউটার",
49
+
"title": "জিন রাউটার",
50
50
"items": [{
51
-
"definition": "গিন রাউটার ইনিশিয়ালাইজেশন",
51
+
"definition": "জিন রাউটার ইনিশিয়ালাইজেশন",
52
52
"code": "router := gin.Default()"
53
53
}]
54
54
},
55
55
{
56
-
"title": "গিন রাউটার এর মেথড",
56
+
"title": "জিন রাউটার এর মেথড",
57
57
"items": [{
58
58
"definition": "GET",
59
59
"code": "router.GET(\"/\", func(c *gin.Context) {\n\t// এখানে কোড লিখুন\n})"
@@ -90,7 +90,7 @@
90
90
91
91
},
92
92
{
93
-
"title": "গিন রাউটার এর প্যারামিটার",
93
+
"title": "জিন রাউটার এর প্যারামিটার",
94
94
"items": [{
95
95
"definition": "প্যারামিটার নেই",
96
96
"code": "router.GET(\"/\", func(c *gin.Context) {\n\t// এখানে কোড লিখুন\n})"
0 commit comments