borgbackup/src/borg/platformflags.py
2018-11-10 23:34:43 +01:00

12 lines
312 B
Python

"""
Flags for Platform-specific APIs.
Use these Flags instead of sys.platform.startswith('<OS>') or try/except.
"""
import sys
is_win32 = sys.platform.startswith('win32')
is_linux = sys.platform.startswith('linux')
is_freebsd = sys.platform.startswith('freebsd')
is_darwin = sys.platform.startswith('darwin')