|
|
|
|
|
by thiht
812 days ago
|
|
I absolutely hate the approach of scattering routing instructions everywhere via annotations. Nothing beats a router.go file with all the endpoints declared in the same place. Routing annotations is a bad idea that caught up just because it looks clever. Looking for the handler for ˋGET /foo/{fooID}/barˋ is terrible in a codebase using annotations. |
|
I hate decorators so much, just let me use regular data as code.