6 lines
158 B
Python
6 lines
158 B
Python
# -*- encoding: utf-8 -*-
|
|
import os
|
|
|
|
# TODO: create config module and put this constant there.
|
|
BASE_URI = os.environ.get("BOTZ_BASE_URI", "http://localhost")
|