Skip to content

v1.13.3

Compare
Choose a tag to compare
@Fenny Fenny released this 22 Jul 00:12
2975344

Deprecated

// Old signature
func (app *App) Get(path string, handlers ...Handler) *Route {}

// New signature
func (app *App) Get(path string, handlers ...Handler) Router {}
  • app.Routes() will no longer be supported, to access routes from the stack, please use app.Stack()
  • Name is removed from the Route struct, did had no more purpose after we decided to compress our router stack in #651

🔥 New

🧹 Updates

🚀 Improvements

🩹 Fixes