WithCharset sets the Charset setting. See `Configuration`.
(charset string)
| 387 | // |
| 388 | // See `Configuration`. |
| 389 | func WithCharset(charset string) Configurator { |
| 390 | return func(app *Application) { |
| 391 | app.config.Charset = charset |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | // WithPostMaxMemory sets the maximum post data size |
| 396 | // that a client can send to the server, this differs |
no outgoing calls
searching dependent graphs…