How to use description method of main Package

Best Rod code snippet using main.description

docs.go

Source:docs.go Github

copy

Full Screen

...11var doc = `{12 "schemes": {{ marshal .Schemes }},13 "swagger": "2.0",14 "info": {15 "description": "{{.Description}}",16 "title": "{{.Title}}",17 "contact": {18 "name": "API Support"19 },20 "version": "{{.Version}}"21 },22 "host": "{{.Host}}",23 "basePath": "{{.BasePath}}",24 "paths": {25 "/api/v1/addlistpoint": {26 "post": {27 "description": "格式:POST /api/v1/addlistpoint\n不能为空字段:key,value",28 "consumes": [29 "application/json"30 ],31 "produces": [32 "application/json"33 ],34 "summary": "添加列表元素",35 "parameters": [36 {37 "description": "相关信息",38 "name": "Keyinfo",39 "in": "body",40 "required": true,41 "schema": {42 "$ref": "#/definitions/main.Keyinfo"43 }44 }45 ],46 "responses": {47 "200": {48 "description": "ok",49 "schema": {50 "$ref": "#/definitions/main.Response"51 }52 }53 }54 }55 },56 "/api/v1/dellistpoint": {57 "post": {58 "description": "格式:POST /api/v1/dellistpoint\n不能为空字段:key,value",59 "consumes": [60 "application/json"61 ],62 "produces": [63 "application/json"64 ],65 "summary": "列表中删除元素",66 "parameters": [67 {68 "description": "相关信息",69 "name": "Keyinfo",70 "in": "body",71 "required": true,72 "schema": {73 "$ref": "#/definitions/main.Keyinfo"74 }75 }76 ],77 "responses": {78 "200": {79 "description": "ok",80 "schema": {81 "$ref": "#/definitions/main.Response"82 }83 }84 }85 }86 },87 "/api/v1/getalllist": {88 "get": {89 "description": "格式:get /api/v1/getalllist",90 "consumes": [91 "application/json"92 ],93 "produces": [94 "application/json"95 ],96 "summary": "获取名单名称列表",97 "responses": {98 "200": {99 "description": "ok",100 "schema": {101 "$ref": "#/definitions/main.Response"102 }103 }104 }105 }106 },107 "/api/v1/getalllock": {108 "get": {109 "description": "格式:get /api/v1/getalllock",110 "consumes": [111 "application/json"112 ],113 "produces": [114 "application/json"115 ],116 "summary": "获取锁名称列表",117 "responses": {118 "200": {119 "description": "ok",120 "schema": {121 "$ref": "#/definitions/main.Response"122 }123 }124 }125 }126 },127 "/api/v1/getlistpoint": {128 "post": {129 "description": "格式:POST /api/v1/getlistpoint\n不能为空字段:key",130 "consumes": [131 "application/json"132 ],133 "produces": [134 "application/json"135 ],136 "summary": "获取列表元素",137 "parameters": [138 {139 "description": "相关信息",140 "name": "Keyinfo",141 "in": "body",142 "required": true,143 "schema": {144 "$ref": "#/definitions/main.Keyinfo"145 }146 }147 ],148 "responses": {149 "200": {150 "description": "ok",151 "schema": {152 "$ref": "#/definitions/main.Response"153 }154 }155 }156 }157 },158 "/api/v1/getlockstate": {159 "post": {160 "description": "格式:POST /api/v1/getlockstate\n不能为空字段:Lock",161 "consumes": [162 "application/json"163 ],164 "produces": [165 "application/json"166 ],167 "summary": "查询锁状态",168 "parameters": [169 {170 "description": "相关信息",171 "name": "Keyinfo",172 "in": "body",173 "required": true,174 "schema": {175 "$ref": "#/definitions/main.Keyinfo"176 }177 }178 ],179 "responses": {180 "200": {181 "description": "ok",182 "schema": {183 "$ref": "#/definitions/main.Response"184 }185 }186 }187 }188 },189 "/api/v1/getmeminfo": {190 "post": {191 "description": "格式:POST /api/v1/getmeminfo\n不能为空字段:key",192 "consumes": [193 "application/json"194 ],195 "produces": [196 "application/json"197 ],198 "summary": "获取内存元素",199 "parameters": [200 {201 "description": "相关信息",202 "name": "Keyinfo",203 "in": "body",204 "required": true,205 "schema": {206 "$ref": "#/definitions/main.Keyinfo"207 }208 }209 ],210 "responses": {211 "200": {212 "description": "ok",213 "schema": {214 "$ref": "#/definitions/main.Response"215 }216 }217 }218 }219 },220 "/api/v1/health": {221 "get": {222 "description": "格式:get /api/v1/health",223 "consumes": [224 "application/json"225 ],226 "produces": [227 "application/json"228 ],229 "summary": "waf与nginx健康检查",230 "responses": {231 "200": {232 "description": "ok",233 "schema": {234 "$ref": "#/definitions/main.Response"235 }236 }237 }238 }239 },240 "/api/v1/lockdisable": {241 "post": {242 "description": "格式:POST /api/v1/lockdisable\n不能为空字段:Lock",243 "consumes": [244 "application/json"245 ],246 "produces": [247 "application/json"248 ],249 "summary": "关锁",250 "parameters": [251 {252 "description": "相关信息",253 "name": "Keyinfo",254 "in": "body",255 "required": true,256 "schema": {257 "$ref": "#/definitions/main.Keyinfo"258 }259 }260 ],261 "responses": {262 "200": {263 "description": "ok",264 "schema": {265 "$ref": "#/definitions/main.Response"266 }267 }268 }269 }270 },271 "/api/v1/lockenable": {272 "post": {273 "description": "格式:POST /api/v1/lockenable\n不能为空字段:Lock",274 "consumes": [275 "application/json"276 ],277 "produces": [278 "application/json"279 ],280 "summary": "开锁",281 "parameters": [282 {283 "description": "相关信息",284 "name": "Keyinfo",285 "in": "body",286 "required": true,287 "schema": {288 "$ref": "#/definitions/main.Keyinfo"289 }290 }291 ],292 "responses": {293 "200": {294 "description": "ok",295 "schema": {296 "$ref": "#/definitions/main.Response"297 }298 }299 }300 }301 },302 "/api/v1/setwafurl": {303 "post": {304 "description": "格式:POST /api/v1/setwafurl\n不能为空字段:key",305 "consumes": [306 "application/json"307 ],308 "produces": [309 "application/json"310 ],311 "summary": "设置waf地址",312 "parameters": [313 {314 "description": "相关信息",315 "name": "Keyinfo",316 "in": "body",317 "required": true,318 "schema": {319 "$ref": "#/definitions/main.Keyinfo"320 }321 }322 ],323 "responses": {324 "200": {325 "description": "ok",326 "schema": {327 "$ref": "#/definitions/main.Response"328 }329 }330 }331 }332 },333 "/api/v1/wafrulesync": {334 "get": {335 "description": "格式:get /api/v1/wafrulesync",336 "consumes": [337 "application/json"338 ],339 "produces": [340 "application/json"341 ],342 "summary": "从redis同步规则到waf",343 "responses": {344 "200": {345 "description": "ok",346 "schema": {347 "$ref": "#/definitions/main.Response"348 }349 }350 }351 }352 }353 },354 "definitions": {355 "main.Keyinfo": {356 "type": "object",357 "properties": {358 "key": {359 "description": "键",360 "type": "string"361 },362 "lock": {363 "description": "锁",364 "type": "string"365 },366 "value": {367 "description": "值",368 "type": "string"369 }370 }371 },372 "main.Response": {373 "type": "object",374 "properties": {375 "code": {376 "type": "integer"377 },378 "message": {379 "type": "object"380 }381 }...

Full Screen

Full Screen

description

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 test.Description()4}5import (6func main() {7 test.Description()8}9import (10func main() {11 test.Description()12}13import (14func main() {15 test.Description()16}17import (18func main() {19 test.Description()20}21import (22func main() {23 test.Description()24}25import (26func main() {27 test.Description()28}29import (30func main() {31 test.Description()32}33import (34func main() {35 test.Description()36}37import (38func main() {39 test.Description()40}41import (42func main() {43 test.Description()44}45import (46func main() {47 test.Description()48}49import (50func main() {51 test.Description()52}53import (54func main() {55 test.Description()56}57import (

Full Screen

Full Screen

description

Using AI Code Generation

copy

Full Screen

1import "fmt"2type student struct{3}4func (s student) description(){5fmt.Println("Name: ", s.name)6fmt.Println("Rollno: ", s.rollno)7}8func main(){9s1 := student{"John", 1}10s1.description()11}12import "fmt"13type student struct{14}15func (s *student) description(){16fmt.Println("Name: ", s.name)17fmt.Println("Rollno: ", s.rollno)18}19func main(){20s1 := student{"John", 1}21s1.description()22}

Full Screen

Full Screen

description

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 fmt.Println(description())4}5func description() string {6}7import "fmt"8func main() {9 fmt.Println("Hello World")10}11func description() string {12}13import "fmt"14func main() {15 fmt.Println(description())16}17var arr [5]int = [5]int{1, 2, 3, 4, 5}

Full Screen

Full Screen

description

Using AI Code Generation

copy

Full Screen

1import "fmt"2func main() {3 fmt.Println("Hello, World!")4}5import "fmt"6func main() {7 fmt.Println("Hello, World!")8}9import (10func main()

Full Screen

Full Screen

description

Using AI Code Generation

copy

Full Screen

1import "fmt"2type description interface {3 describe()4}5type main struct {6}7func (m main) describe() {8 fmt.Println("name:", m.name, "age:", m.age)9}10func main() {11 m := main{12 }13 d.describe()14}

Full Screen

Full Screen

description

Using AI Code Generation

copy

Full Screen

1import (2func description() {3 fmt.Println("This is description of main class")4}5func main() {6 description()7}

Full Screen

Full Screen

description

Using AI Code Generation

copy

Full Screen

1import "fmt"2func main() {3 fmt.Println(d.description())4}5import "fmt"6func (d description) description() string {7 return string(d)8}

Full Screen

Full Screen

description

Using AI Code Generation

copy

Full Screen

1import "fmt"2func main() {3 fmt.Println(a, b)4 fmt.Println("Before swap", a, b)5 swap(&a, &b)6 fmt.Println("After swap", a, b)7}8func swap(x *int, y *int) {9}10import "fmt"11type person struct {12}13func main() {14 p.display()15}16func (p *person) display() {17 fmt.Println("Name:", p.name)18 fmt.Println("Age:", p.age)19}20import "fmt"21func main() {

Full Screen

Full Screen

description

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 fmt.Println("Hello, playground")4 var a = main.Employee{"A", 1}5 a.Description()6}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful