7 lines
137 B
Python
7 lines
137 B
Python
|
class QueryService:
|
||
|
'''An example of a service that is shared'''
|
||
|
|
||
|
@staticmethod
|
||
|
def execute(query):
|
||
|
return 'Success'
|