5 lines
118 B
Python
5 lines
118 B
Python
|
from flask import Blueprint, request, jsonify
|
||
|
from services import FileService
|
||
|
|
||
|
file_bp = Blueprint("file", __name__)
|