I'm contemplating porting an internal tool that uses the Rust core in a Python application to one written using Go. I gather (from a cursory look), that the Go implementation does not use the Rust core but is based on cgo.
The app will be a REST API tool that receives requests for evaluating rules contained in JDM .json files.
How does the Go module fare compared to the Rust one?
I know this is a generic question; so a generic answer would do.
I'm contemplating porting an internal tool that uses the Rust core in a Python application to one written using Go. I gather (from a cursory look), that the Go implementation does not use the Rust core but is based on
cgo.The app will be a REST API tool that receives requests for evaluating rules contained in JDM
.jsonfiles.How does the Go module fare compared to the Rust one?
I know this is a generic question; so a generic answer would do.