server: clean up some renamed imports

This commit is contained in:
Bill Thiede 2024-12-20 09:06:35 -08:00
parent 94576e98fc
commit e794a902dd
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
use std::fs; use std::fs;
use server::sanitize_html; use letterbox_server::sanitize_html;
fn main() -> anyhow::Result<()> { fn main() -> anyhow::Result<()> {
let mut args = std::env::args().skip(1); let mut args = std::env::args().skip(1);

View File

@ -1,6 +1,6 @@
use chrono::NaiveDateTime; use chrono::NaiveDateTime;
use clap::Parser; use clap::Parser;
use server::mail::read_mail_to_db; use letterbox_server::mail::read_mail_to_db;
use sqlx::postgres::PgPool; use sqlx::postgres::PgPool;
/// Add certain emails as posts in newsfeed app. /// Add certain emails as posts in newsfeed app.