Пример #1
0
 def ping(self):
     ping = PingDto(SvcConfig.api_version, SvcUtils.get_build_version(), SvcConfig.is_debug_mode)
     return ping
Пример #2
0
from distutils.core import setup
from svc_utils import SvcUtils

setup(
    name='check_point',
    packages=['check_point'],
    version=SvcUtils.get_build_version(),
    description='CheckPoint',
    url='https://github.com/EnzoGunn/CheckPoint',
    author='Ahmad Saeed'
)
Пример #3
0
 def ping(self):
     ping = PingDto(SvcConfig.api_version, SvcUtils.get_build_version(), SvcConfig.is_debug_mode)
     return ping
Пример #4
0
from distutils.core import setup
from svc_utils import SvcUtils

setup(
    name='message_service',
    packages=['message_service'],
    version=SvcUtils.get_build_version(),
    description='Message Service',
    url='https://github.com/EnzoGunn/message_service',
    author='Ahmad Saeed'
)