From 7f13768e0b8a7bd02e953f85f41a4cb01b978cb6 Mon Sep 17 00:00:00 2001 From: Keiran Price Date: Wed, 14 Aug 2019 13:52:42 +0100 Subject: [PATCH] #34: Add table specific resource classes --- src/resources/table_endpoints/__init__.py | 0 .../table_endpoints/table_endpoints.py | 26 +++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/resources/table_endpoints/__init__.py create mode 100644 src/resources/table_endpoints/table_endpoints.py diff --git a/src/resources/table_endpoints/__init__.py b/src/resources/table_endpoints/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/src/resources/table_endpoints/table_endpoints.py b/src/resources/table_endpoints/table_endpoints.py new file mode 100644 index 00000000..3fe1c2ce --- /dev/null +++ b/src/resources/table_endpoints/table_endpoints.py @@ -0,0 +1,26 @@ +from flask_restful import Resource + + +class UsersInvestigations(Resource): + pass + + +class UsersInvestigationsCount(Resource): + pass + + +class InstrumentsFacilityCycles(Resource): + pass + + +class InstrumentsFacilityCyclesCount(Resource): + pass + + +class InstrumentsFacilityCyclesInvestigations(Resource): + pass + + +class InstrumentsFacilityCyclesInvestigationsCount(Resource): + pass +