Server API v1 #1

Merged
luke merged 30 commits from development into main 2024-05-04 20:22:45 +00:00
4 changed files with 4 additions and 3 deletions
Showing only changes of commit 7681079cb1 - Show all commits

View File

@ -4,6 +4,9 @@ use diesel::{Connection, PgConnection};
use diesel::pg::Pg;
use diesel_migrations::{embed_migrations, EmbeddedMigrations, MigrationHarness};
pub mod models;
pub mod schema;
pub const MIGRATIONS: EmbeddedMigrations = embed_migrations!("./migrations");
pub fn establish_connection() -> Result<PgConnection, Box<dyn error::Error>> {

View File

@ -6,7 +6,7 @@ use diesel::prelude::*;
use uuid::Uuid;
#[derive(Queryable, Selectable)]
#[diesel(table_name = crate::schema::tasks)]
#[diesel(table_name = crate::db::schema::tasks)]
#[diesel(check_for_backend(diesel::pg::Pg))]
pub struct Task {
pub id: Uuid,

View File

@ -6,8 +6,6 @@ use std::{env, io};
use actix_web::{App, get, HttpResponse, HttpServer, Responder};
pub mod db;
pub mod models;
pub mod schema;
pub mod util;
#[actix_web::main]