1
0
mirror of https://github.com/ilri/dspace-statistics-api.git synced 2024-11-22 06:15:02 +01:00

Rename items.py to stats.py

It is no longer used only for item-related statistics functions.
This commit is contained in:
Alan Orth 2020-12-20 16:28:56 +02:00
parent 3339bf8d9c
commit 47b4eb3df7
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
2 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import falcon
import psycopg2.extras import psycopg2.extras
from .database import DatabaseManager from .database import DatabaseManager
from .items import get_downloads, get_views from .stats import get_downloads, get_views
from .util import set_statistics_scope from .util import set_statistics_scope
from .util import validate_post_parameters from .util import validate_post_parameters