14 lines
215 B
Python
14 lines
215 B
Python
import os
|
|
|
|
|
|
stage = os.getenv("STAGE", 'local')
|
|
if stage == 'local':
|
|
QUEUES_URL = 'localhost:50051'
|
|
else:
|
|
QUEUES_URL = 'queues-grpc:50051'
|
|
|
|
|
|
class Daemon:
|
|
def execute(self):
|
|
raise NotImplemented
|