diff options
author | Lukas Stabe <lukas@stabe.de> | 2020-09-26 03:39:52 +0000 |
---|---|---|
committer | Lukas Stabe <lukas@stabe.de> | 2020-09-26 03:39:52 +0000 |
commit | a4d227d34ad2bbf40ff5d542dcc8821ccb090ac7 (patch) | |
tree | caf6638bd2f26f90c4c93049100135763034afcd /src/main.rs | |
parent | move css out of html into its own route (diff) | |
download | miniserve-a4d227d34ad2bbf40ff5d542dcc8821ccb090ac7.tar.gz miniserve-a4d227d34ad2bbf40ff5d542dcc8821ccb090ac7.zip |
remove default color scheme cli argument
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs index 5b53070..1f63e10 100644 --- a/src/main.rs +++ b/src/main.rs @@ -22,7 +22,6 @@ mod file_upload; mod listing; mod pipe; mod renderer; -mod themes; use crate::errors::ContextualError; @@ -59,9 +58,6 @@ pub struct MiniserveConfig { /// Randomly generated css route pub css_route: String, - /// Default color scheme - pub default_color_scheme: themes::ColorScheme, - /// The name of a directory index file to serve, like "index.html" /// /// Normally, when miniserve serves a directory, it creates a listing for that directory. |