This commit is contained in:
2025-10-30 23:12:30 +01:00
parent 4a3cb63263
commit 3941ec61d3
7 changed files with 77 additions and 58 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ use diesel::{dsl::exists, prelude::*, select};
use reqwest::{Client, Method, StatusCode};
use uuid::Uuid;
use backend::{
use papercrate::{
config::AppConfig,
db::{self, PgPool},
documents::search::ensure_quickwit_index,
+1 -1
View File
@@ -1,4 +1,4 @@
use backend::openapi::ApiDoc;
use papercrate::openapi::ApiDoc;
use utoipa::OpenApi;
fn main() {
+1 -1
View File
@@ -3,7 +3,7 @@ use std::net::SocketAddr;
use tokio::net::TcpListener;
use tower::make::Shared;
use backend::{routes::webdav, utils::bootstrap::init_component};
use papercrate::{routes::webdav, utils::bootstrap::init_component};
#[tokio::main]
async fn main() -> anyhow::Result<()> {
+1 -1
View File
@@ -2,7 +2,7 @@ use std::time::Duration;
use tokio::signal;
use backend::{default_handlers, utils::bootstrap::init_component, Worker};
use papercrate::{default_handlers, utils::bootstrap::init_component, Worker};
#[tokio::main]
async fn main() -> anyhow::Result<()> {
+1 -1
View File
@@ -3,7 +3,7 @@ use std::net::SocketAddr;
use tokio::net::TcpListener;
use tower::make::Shared;
use backend::{routes, utils::bootstrap::init_component};
use papercrate::{routes, utils::bootstrap::init_component};
#[tokio::main]
async fn main() -> anyhow::Result<()> {