diff options
| author | Fuwn <[email protected]> | 2021-05-06 19:32:18 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-06 19:32:18 -0700 |
| commit | 4033f7905186c26014254ca03a383c33a550c840 (patch) | |
| tree | 3eecd6e4d9bbdfe82aec59c5a19acf278d0d9a27 | |
| parent | fix(random): no range in one image languages (diff) | |
| download | api-4033f7905186c26014254ca03a383c33a550c840.tar.xz api-4033f7905186c26014254ca03a383c33a550c840.zip | |
fix(structures): remove random create pub
| -rw-r--r-- | src/structures.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/structures.rs b/src/structures.rs index c17ba6f..13f904d 100644 --- a/src/structures.rs +++ b/src/structures.rs @@ -23,6 +23,6 @@ pub struct GitHubAPIResponseTree { #[derive(Serialize, Deserialize, Debug)] pub struct SenpyRandom { - pub(crate) language: String, - pub image: String, + pub language: String, + pub image: String, } |