mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-08 08:39:41 +00:00
* ✨feature: print all routes message when server starts * ✨feature: print all routes message when server starts * ✨feature: print all routes message when server starts * 🐛fix: errors unhandled * 🐛fix: ignore child process and add some "-" to the table head * 🐛fix: add printRoutesMessage for listener and listenTLS
13 lines
191 B
Go
13 lines
191 B
Go
//go:build appengine
|
|
// +build appengine
|
|
|
|
package fasttemplate
|
|
|
|
func unsafeBytes2String(b []byte) string {
|
|
return string(b)
|
|
}
|
|
|
|
func unsafeString2Bytes(s string) []byte {
|
|
return []byte(s)
|
|
}
|