mirror of
https://github.com/msfjarvis/gitice
synced 2025-08-15 01:37:00 +05:30
7 lines
181 B
Rust
7 lines
181 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
pub(crate) struct PersistableRepo {
|
|
pub(crate) remote_url: String,
|
|
pub(crate) head: String,
|
|
}
|