CICD/app/shared/query/service.py

7 lines
137 B
Python
Raw Permalink Normal View History

2019-05-19 17:52:41 +02:00
class QueryService:
2019-08-03 18:55:38 +02:00
"""An example of a service that is shared"""
2019-05-19 17:52:41 +02:00
@staticmethod
def execute(query):
2019-08-03 18:55:38 +02:00
return "Success"