Will Strinz

Results 1 issues of Will Strinz

In episode 4, after adding these guards for the error codes: ``` if topic.chars().count() > 50 { return Err(ErrorCode::TopicTooLong.into()) } if content.chars().count() > 280 { return Err(ErrorCode::ContentTooLong.into()) } ``` I...