diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-09-24 19:51:37 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-25 17:02:49 -0400 |
commit | 7c128df4a041f3b2c04725a0f5f3320db684d067 (patch) | |
tree | 8b9e0ffa87c0e36faa1555c0409bbd7046497a98 /src/handlers.rs | |
parent | 7fb28219375b52f3055e79d9d9b103a08dbb0790 (diff) |
Use lazy_static for HttpsConnector
And rename net.rs to http.rs
Share HTTP connection.
Diffstat (limited to 'src/handlers.rs')
-rw-r--r-- | src/handlers.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handlers.rs b/src/handlers.rs index 964baabf8..623c64110 100644 --- a/src/handlers.rs +++ b/src/handlers.rs @@ -147,7 +147,7 @@ fn permission_denied() -> DenoError { fn not_implemented() -> DenoError { DenoError::from(std::io::Error::new( std::io::ErrorKind::Other, - "Not implemented" + "Not implemented", )) } |