27 lines
587 B
Python
27 lines
587 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
@File: services.py
|
|
@Date: 2020-09-14
|
|
@author: A2TEC
|
|
@section MODIFYINFO 수정정보
|
|
- 수정자/수정일 : 수정내역
|
|
- 2022-01-14/hsj100@a2tec.co.kr : refactoring
|
|
@brief: services api
|
|
"""
|
|
|
|
import requests, json, traceback
|
|
from fastapi import APIRouter, Depends, Body
|
|
from starlette.requests import Request
|
|
from typing import Annotated, List
|
|
|
|
from rest.app.common import consts
|
|
from rest.app import models as M
|
|
from rest.app.utils.date_utils import D
|
|
from custom_logger.custom_log import custom_logger as LOG
|
|
|
|
|
|
|
|
router = APIRouter(prefix="/services")
|
|
|
|
|