@@ -3,7 +3,7 @@ import datetime
import os
import shutil
-bp = Blueprint('dict', __name__, url_prefix='/api/v1')
+bp = Blueprint('api_v1', __name__, url_prefix='/api/v1')
@bp.route('/')
def hello_world():
@@ -1,3 +1,3 @@
from flask import Blueprint, render_template, request, jsonify
-bp = Blueprint('dict', __name__, url_prefix='/api/v2')
+bp = Blueprint('api_v2', __name__, url_prefix='/api/v2')