| 17 | #[derive(Queryable, Selectable, Identifiable)] |
| 18 | #[diesel(table_name = github_instance)] |
| 19 | pub struct GithubInstance { |
| 20 | pub id: i32, |
| 21 | pub host: String, |
| 22 | } |
| 23 | |
| 24 | #[derive(Queryable, Selectable, Identifiable, Insertable, AsChangeset)] |
| 25 | #[diesel(table_name = github_installation)] |
nothing calls this directly
no outgoing calls
no test coverage detected