18 lines
301 B
Python
18 lines
301 B
Python
"""
|
|
.. moduleauthor:: Eric Torres
|
|
.. module:: rbackup.network
|
|
:synopsis: library for interacting with rbackup over the network
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
# ========== Constants ==========
|
|
|
|
|
|
# ========== Logging Setup ===========
|
|
syslog = logging.getLogger(__name__)
|
|
|
|
|
|
# ========== Functions ==========
|