I'm using GoFiber via lambda for my API, and I don't really see the value in having to hard-code all of the values in the yaml file if I'm going to handle the routing directly in GoFiber. Is that a common use case? I want to use API Gateway to have different API Keys and usage plans and rate-limiting. I can't find any documentation with any examples of API Gateway using GoFiber specifically.
I was hoping just to have a root route in API Gateway that passes everything else through GoFiber to authenticate etc. The only thing API Gateway would do is rate-limit and track usage per API Key.
I would authenticate inside GoFiber and would handle all responses there.
Does anybody have a link to any sort of documentation that would help me figure out a good design pattern for this?