From 325fa5a4c697caa92c97276558d46ae36c242ba5 Mon Sep 17 00:00:00 2001
From: Nathaniel Kenschaft <nkenschaft@gmail.com>
Date: Tue, 16 Jun 2020 21:35:27 -0400
Subject: [PATCH] added module docstrings

---
 bgservice/bgservice.py | 5 +++++
 skoolos.py             | 3 +++
 2 files changed, 8 insertions(+)

diff --git a/bgservice/bgservice.py b/bgservice/bgservice.py
index e019eac..3c3e635 100644
--- a/bgservice/bgservice.py
+++ b/bgservice/bgservice.py
@@ -1,3 +1,8 @@
+"""
+A simple background service to log events in a directory,
+check for git commands in bash/zsh history,
+and check for non-whitelisted files in the watched directory.
+"""
 import time
 import sys
 import os
diff --git a/skoolos.py b/skoolos.py
index e553e76..7a9b0eb 100644
--- a/skoolos.py
+++ b/skoolos.py
@@ -1,3 +1,6 @@
+"""
+The main program file for SkoolOS
+"""
 import sys
 from urllib.parse import urlparse
 import requests