diff --git a/rbackup/network.py b/rbackup/network.py new file mode 100644 index 0000000..956d63c --- /dev/null +++ b/rbackup/network.py @@ -0,0 +1,17 @@ +""" +.. 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 ==========