fix: replace pub(crate) with pub

This commit is contained in:
Harsh Shandilya 2023-05-12 10:46:58 +05:30
parent a728a353d6
commit 5b3ec8a1b0
No known key found for this signature in database
5 changed files with 19 additions and 20 deletions

View file

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