Releases: inphinit/teeny.go
Releases · inphinit/teeny.go
Version 0.2.3 👾
Fixed issue in route paths with characters used in RegExp
Version 0.2.2 👾
Removed unnecessary `if()` within the "for-loop"
Version 0.2.1 👾
- Support for "405 Method Not Allowed" on parameterized routes
- Support for ANY method ("ANY" represents that the route will accept any http method)
Version 0.2.0 👽
- Separate
app.SetCertificate(certFile string, keyFile string)
method inapp.SetCertificate(certFile string)
andapp.SetKey(keyFile string)
- Support for CLI mode (with
app.CliMode()
), see commands:--tls
Enable TLS mode in your program--tls
Disable TLS--debug
Enable debug mode in your program--debug
Disable debug--fcgi
Enable Fast-CGI mode in your program--fcgi
Disable Fast-CGI--cert
Define certificate file--key
Define key file--public
Define folder for access static files--host
Define host address--port
Define port addres
Version 0.1.0 👽
- Replace
app.Pattern()
byapp.Params()
method - Disable parameter checking if you don't use
app.Params()
Version 0.0.2 👾
Rename module