11 lines
141 B
Rust
11 lines
141 B
Rust
pub struct Video {
|
|
title: String
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
#[test]
|
|
pub fn test_video() {
|
|
assert_eq!(true, true)
|
|
}
|
|
}
|