From 67d7632b900f7221c1a3fb1927cd97b7cb60c71e Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 29 May 2021 18:16:27 +0200 Subject: Move `Repo` to `github` module Makes more sense here rather than in its own module since it models GitHub's repository structure. --- src/repo.rs | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'src/repo.rs') diff --git a/src/repo.rs b/src/repo.rs index e934be2..e69de29 100644 --- a/src/repo.rs +++ b/src/repo.rs @@ -1,13 +0,0 @@ -use serde::Deserialize; - - -#[derive(Debug, Deserialize)] -pub struct Repo { - id: usize, - name: String, - description: Option, - fork: bool, - git_url: String, - default_branch: String, - updated_at: String, // TODO: Maybe parse to date? -} -- cgit v1.2.3