byceps.blueprints.api.views   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
eloc 3
dl 0
loc 13
rs 10
c 0
b 0
f 0
ccs 0
cts 2
cp 0
1
"""
2
byceps.blueprints.api.views
3
~~~~~~~~~~~~~~~~~~~~~~~~~~~
4
5
:Copyright: 2014-2024 Jochen Kupperschmidt
6
:License: Revised BSD (see `LICENSE` file for details)
7
"""
8
9
from flask import Blueprint
10
11
12
blueprint = Blueprint('api', __name__)
13