pyusergrid.services.pytest.PytestService.py Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of usergrid-services Show documentation
Show all versions of usergrid-services Show documentation
Service layer for Usergrid system.
from org.usergrid.persistence import EntityRef
from org.usergrid.services import AbstractService
from java.util import UUID
class PytestService(AbstractService):
def __init__(self):
self._id = UUID(0, 0)
AbstractService.__init__(self, "pytest")
def getId(self):
return self._id
def getType(self):
return "Python"
© 2015 - 2024 Weber Informatics LLC | Privacy Policy