beginning week

This commit is contained in:
Colin McKechney
2023-04-30 19:46:53 -04:00
parent bbab7882cc
commit 159faa8fef

14
backend/src/api/week.rs Normal file
View File

@@ -0,0 +1,14 @@
use serde::{Serialize, Deserialize};
use log::{error, info};
use actix_web::{self, Responder};
use oracle::{Connection, Result};
use crate::config::{ORACLE_PASS, ORACLE_USER, ORACLE_CON_STR};
pub async fn week(item: ItemData) -> impl Responder {
}
fn add_item(item: ItemData) -> Result<()> {
}