mirror of
https://github.com/msfjarvis/gitice
synced 2025-08-14 19:47:01 +05:30
7 lines
167 B
Rust
7 lines
167 B
Rust
use serde_derive::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
pub struct PersistableRepo {
|
|
pub remote_url: String,
|
|
pub head: String,
|
|
}
|