Posting it here as I don't see much activity in the chat or stackoverflow around goweb.
The pain of integration with certain payment providers requires a couple of HTML pages to be rendered by the backend, where the user can perform some minimal interaction.
What would be the good practice here when the whole backend is build with goweb?
Options:
- Implement with goweb and expose via /html or similar (while the API is exposed via /api)
- Implement with pure go net/http package as part of the SAME server and expose via something like /html (while the API is exposed via /api)
- Implement with whatever you feel comfortable but run as a separate server.
- Other options?