All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pyusergrid.services.pytest.PytestService.py Maven / Gradle / Ivy

There is a newer version: 0.0.27.1
Show newest version
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