diff options
author | stale <redkugelblitzin@gmail.com> | 2022-05-18 09:36:43 -0300 |
---|---|---|
committer | stale <redkugelblitzin@gmail.com> | 2022-05-18 09:36:43 -0300 |
commit | d89b9ea43ac65af549279f6e86c68c66243dcdf3 (patch) | |
tree | 39173297e076c4425149c78f6244a2b762786ac8 /src/types.rs | |
parent | 127a1059fec4fecb4099cb95ddb7ef3c7cf45077 (diff) |
organizing
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, } |