Skip to content

Commit

Permalink
cargofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherBiscardi committed Apr 14, 2024
1 parent 2e07257 commit 41b8492
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 4 additions & 1 deletion src/app/routes/issue.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
use crate::app::components::{Container, Divider, DividerWithDescription, DescriptionColor};
use crate::app::components::{
Container, DescriptionColor, Divider,
DividerWithDescription,
};
use itertools::Itertools;
use leptos::*;
use leptos_meta::*;
Expand Down
6 changes: 1 addition & 5 deletions src/atom_feed.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
use crate::state::AppState;
use atom_syndication::*;
use axum::{
extract::{State},
http::{header},
response::{IntoResponse},
extract::State, http::header, response::IntoResponse,
};
use serde::{Deserialize, Serialize};

pub async fn atom_feed(
State(app_state): State<AppState>,
) -> impl IntoResponse {
use atom_syndication::Feed;



let issues: Vec<SqlIssueShort> = sqlx::query_as!(
SqlIssueShort,
Expand Down

0 comments on commit 41b8492

Please sign in to comment.