Split across multiple files

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-11-09 06:32:06 +05:30
parent f1ddc97a65
commit 5eff1508ac
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
3 changed files with 96 additions and 89 deletions

7
src/model.rs Normal file
View file

@ -0,0 +1,7 @@
use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize)]
pub(crate) struct PersistableRepo {
pub(crate) remote_url: String,
pub(crate) head: String,
}