Add schemas, endpoints and supporting tests

This commit is contained in:
Ken Tsang
2017-03-14 15:25:36 +00:00
parent ac8e55628c
commit 9e4b1b2bfc
8 changed files with 271 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
from flask import Blueprint
from app.v2.errors import register_errors
template_blueprint = Blueprint("v2_template", __name__, url_prefix='/v2/template')
register_errors(template_blueprint)