9 lines
143 B
Rust
9 lines
143 B
Rust
use std::path::PathBuf;
|
|
|
|
#[derive(Queryable)]
|
|
pub struct GameFile {
|
|
pub id: i32,
|
|
pub original_path: PathBuf,
|
|
pub file_hash: u64,
|
|
}
|