automatic cargo CI changes

This commit is contained in:
cscherrNT 2024-03-21 15:38:42 +00:00 committed by github-actions[bot]
parent b1bd520330
commit 8ee32759ee
1 changed files with 3 additions and 3 deletions

View File

@ -3,11 +3,11 @@ use crate::wlist::word::Word;
pub struct GuessResponse {
guess: Word,
status: Vec<(char, Status)>,
step: usize
step: usize,
}
pub enum Status {
None,
Exists,
Matched
Matched,
}