diff --git a/problem_06/src/connection.rs b/problem_06/src/connection.rs
index b2ad7ed..6b26c3a 100644
--- a/problem_06/src/connection.rs
+++ b/problem_06/src/connection.rs
@@ -1,4 +1,4 @@
-use crate::frame::{self, Frame};
+use crate::frame::{self, ClientFrames, ServerFrames};
use bytes::{Buf, BytesMut};
use std::io::Cursor;
@@ -20,7 +20,7 @@ impl Connection {
}
}
- pub async fn read_frame(&mut self) -> crate::Result