コード例 #1
0
ファイル: service.py プロジェクト: EnzoGunn/DepartureTimes
 def ping(self):
     ping = PingDto(SvcConfig.api_version, SvcUtils.get_build_version(), SvcConfig.is_debug_mode)
     return ping
コード例 #2
0
ファイル: setup.py プロジェクト: EnzoGunn/CheckPoint
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
ファイル: service.py プロジェクト: EnzoGunn/message_service
 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'
)