I am in a state of analysis paralysis.
After doing a nice part of this realtime Golang API (Postgresql backed, say 1k lines) I want to write an admin page and I'm finding it a big hassle in Go, even with https://github.com/marmelab/admin-on-rest - and I only have 5 tables or so.
I have to write a lot of repetitive code for each HTTP operation and for each table... I also have to duplicate my "models" (structs) since the keys I want to JSON encode aren't the same as in the "main application" (cf Golang type tags).
Should I just suck it up and write the code, or throw Django together, redefine the models there and present that as the admin (operating on the same database as the main app) ?