(status int, msg string)
| 195 | } |
| 196 | |
| 197 | func (c *Context) PlainText(status int, msg string) { |
| 198 | c.Render.PlainText(status, []byte(msg)) |
| 199 | } |
| 200 | |
| 201 | func (c *Context) ServeContent(name string, r io.ReadSeeker, params ...any) { |
| 202 | modtime := time.Now() |
no outgoing calls
no test coverage detected