PeterPierinakos / vanilla-rustlang-server

Simple, minimal and open source static web server that uses no dependencies.
Apache License 2.0
38 stars 1 forks source link

Remove unwraps and expect #10

Closed PeterPierinakos closed 2 years ago

PeterPierinakos commented 2 years ago

Type of pull request

Code enhancement

Overview of pull request

This PR will replace most .unwrap()s and .expect()s in the code with ? and introduce proper error handling by propagating the errors through the Server's methods and more.