Service generates images of mandelbrot set at a given location in the complex plane.
make run
to run the server- use following curl to cal the service.
curl --location --request GET 'localhost:8080/mdb' \ --header 'Content-Type: application/json' \ --data ' { "v_size": 540, "h_size": 360, "upper_left": [-1,1], "lower_right": [0,0] }'
- service config are in
src/config/conf.rs
.