mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-18 22:44:24 +01:00
11 lines
367 B
Python
11 lines
367 B
Python
from flask_restx import Namespace
|
|
|
|
statistics_namespace = Namespace(
|
|
"statistics", description="Endpoint to retrieve Statistics"
|
|
)
|
|
|
|
from CTFd.api.v1.statistics import challenges # noqa: F401
|
|
from CTFd.api.v1.statistics import submissions # noqa: F401
|
|
from CTFd.api.v1.statistics import teams # noqa: F401
|
|
from CTFd.api.v1.statistics import users # noqa: F401
|