diff options
Diffstat (limited to 'src/types.rs')
-rw-r--r-- | src/types.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/types.rs b/src/types.rs index 86f1e32..fb9f7ae 100644 --- a/src/types.rs +++ b/src/types.rs @@ -14,9 +14,12 @@ use crate::minesweeper; #[derive(Debug, Clone)] pub struct Config { - pub cert_path: String, - pub pkey_path: String, - pub page_path: String, + pub cert: String, + pub pkey: String, + pub room_pg: String, + pub form_pg: String, + pub client_code: String, + pub stylesheet: String, pub socket_addr: SocketAddr, } |