I think I saw this early on, but then forgot about it. Stumbled upon it today, and it actually looks like a cool project. Have anyone any experience of using it for a real or just a toy project?

  • Lmaydev@programming.dev
    link
    fedilink
    arrow-up
    5
    ·
    6 months ago

    The MVC pattern is really good for writing your endpoints.

    In C# I use the mediator pattern and vertical slice.

    This means the controller handles everything http related and then sends the mediator request and converts the response back to http responses.

    This means I can structure my code however I want and the controllers have no awareness of it and just deal with http.