File size: 174 Bytes
7562203
 
 
 
 
1
2
3
4
5
from flask import Blueprint
from src.controllers.predict_controller import predicts

api = Blueprint("api", __name__)
api.register_blueprint(predicts, url_prefix="/predicts")