Simple library to expose all postgres pubic functions to HTTP.
Uses chi
and gorm
db, _ := gorm.Open(...)
r := chi.NewRouter()
r.Mount("/f", pgroute.MountFunctionRoute(db))
CREATE FUNCTION add_user(username TEXT, age INT) ...
curl -X POST -d '{"username": "foo", "age": 22}'