mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-07-29 01:59:26 +00:00
13 lines
260 B
Python
13 lines
260 B
Python
# SPDX-License-Identifier: 0BSD
|
|
|
|
"""Environment variable parsing helpers."""
|
|
|
|
import os
|
|
|
|
|
|
def env_bool(env_name, default=False):
|
|
val = os.environ.get(env_name)
|
|
if val is None:
|
|
return default
|
|
return val.lower() in ("true", "1", "yes", "on")
|