5 lines
118 B
Python
5 lines
118 B
Python
|
from flask import Blueprint, request, jsonify
|
||
|
from services import UserService
|
||
|
|
||
|
user_bp = Blueprint("user", __name__)
|