| 32 | #[derive(Queryable, Selectable, Identifiable, Insertable, AsChangeset)] |
| 33 | #[diesel(table_name = github_owner)] |
| 34 | pub struct GithubOwner { |
| 35 | pub id: i64, |
| 36 | pub login: String, |
| 37 | pub name: String, |
| 38 | pub instance_id: i32, |
| 39 | pub is_user: bool, |
| 40 | } |
| 41 | |
| 42 | impl GithubOwner { |
| 43 | pub async fn get_by_login( |
nothing calls this directly
no outgoing calls
no test coverage detected