This divides the server module into submodules to make it a bit easier to maintain. It will also move Scheme, Host and Global from the crate root into the server module to avoid littering.
This breaks anything that uses Scheme, Host and Global directly (e.x. use rustful::Scheme will have to be changed to use rustful::server::Scheme). It should not have any other external effects.
This divides the server module into submodules to make it a bit easier to maintain. It will also move
Scheme
,Host
andGlobal
from the crate root into the server module to avoid littering.This breaks anything that uses
Scheme
,Host
andGlobal
directly (e.x.use rustful::Scheme
will have to be changed touse rustful::server::Scheme
). It should not have any other external effects.