Help to understand this import comment

Dear community.
I'm learning Yew.
I came across this code:

use website_test::tutorial::Video; // replace with your own path

let videos = vec![
    Video {
        id: 1,
        title: "Building and breaking things".to_string(),
        speaker: "John Doe".to_string(),
        url: "https://youtu.be/PsaFVLr8t4E".to_string(),
    },
];

What do they mean by "replace with your own path"?

Direct link to tutorial: https://yew.rs/docs/tutorial

Thank you so much.

website_test::tutorial is the file where you defined Video.