26 lines
596 B
Python
26 lines
596 B
Python
import os
|
|
import subprocess
|
|
|
|
import uvicorn
|
|
from db.models.base import BaseResponse
|
|
from db.models.log_data_model import LOT_DATA
|
|
from db.repository import add_kb_to_db, get_kb_detail, get_kb_detail_by_time, delete_kb_detail_by_time
|
|
|
|
from fastapi import FastAPI
|
|
|
|
|
|
def add(data: LOT_DATA):
|
|
try:
|
|
add_kb_to_db(data)
|
|
return BaseResponse()
|
|
except Exception as e:
|
|
return BaseResponse(code=500, msg=e)
|
|
|
|
|
|
def get_data():
|
|
try:
|
|
data = get_kb_detail()
|
|
return BaseResponse(data=data)
|
|
except Exception as e:
|
|
return BaseResponse(code=404, msg=e)
|