mirror of
https://github.com/sortedcord/alemno-payments.git
synced 2026-07-22 04:02:49 +05:30
add test config and basic tests for csv_parser
This commit is contained in:
8
app/api/v1/jobs.py
Normal file
8
app/api/v1/jobs.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from typing import List, Optional
|
||||
from fastapi import APIRouter, Depends, File, UploadFile, Query, HTTPException, status
|
||||
from app.core.dependencies import get_job_service
|
||||
from app.core.exceptions import JobNotFoundException, InvalidCSVException
|
||||
from app.schemas.job import JobResponse, JobStatusResponse, JobResultResponse
|
||||
from app.services.job_service import JobService
|
||||
|
||||
router = APIRouter(prefix="/jobs", tags=["jobs"])
|
||||
Reference in New Issue
Block a user