summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSurya <surya.pandian@truelayer.com>2022-09-27 08:08:55 +0100
committerGitHub <noreply@github.com>2022-09-27 09:08:55 +0200
commit2db720c43f910edb6a6e84b49c51655310f3dea0 (patch)
treebe2705bf4051e668328cd55e0c9bd7a777215427
parente5a38e114386bcd672c79233ce2c587e5ec401ef (diff)
Add encoding to the content (#245)
-rw-r--r--src/models/repos.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/models/repos.rs b/src/models/repos.rs
index 63e4951..e0dd42d 100644
--- a/src/models/repos.rs
+++ b/src/models/repos.rs
@@ -155,6 +155,7 @@ pub struct Content {
pub name: String,
pub path: String,
pub sha: String,
+ pub encoding: String,
/// File content, Base64 encoded
pub content: Option<String>,
pub size: i64,