(c *Context)
| 365 | } |
| 366 | |
| 367 | func readWriteKeys(c *Context) { |
| 368 | for { |
| 369 | c.Set("1", rand.Int()) |
| 370 | c.Set("2", c.Value("1")) |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | func githubConfigRouter(router *Engine) { |
| 375 | for _, route := range githubAPI { |
no test coverage detected