We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bca860d + a237c97 commit da52b0eCopy full SHA for da52b0e
2 files changed
data/gin-gonic.json
@@ -50,6 +50,9 @@
50
"items": [{
51
"definition": "জিন রাউটার ইনিশিয়ালাইজেশন",
52
"code": "router := gin.Default()"
53
+ },{
54
+ "definition":"জিন রাউটার ইমপ্লিমেন্টেশন",
55
+ "code": "router.GET(\"/\", func(c *gin.Context) {\n\t// এখানে কোড লিখুন\n})"
56
}]
57
},
58
{
data/golang.json
@@ -298,6 +298,19 @@
298
299
300
"code": "fmt.Println(aDoctor)"
301
+ },
302
+ {
303
+ "definition": "বেনামী স্ট্রাক্ট(Anonymous structs)",
304
+ "code":"point := struct {\n\tX, Y int\n}{1, 2}"
305
+ }
306
+
307
+ ]
308
309
310
+ "title": "ইন্টারফেস উদাহরণ",
311
+ "items":[
312
313
+ "code": "type Shape interface {\n Area() float64\n Perimeter() float64\n}"
314
}
315
]
316
0 commit comments