# HG changeset patch # User Jeff Hammel # Date 1381716526 25200 # Node ID 9a76064ea5270e8955eca7a2ff2bc716f28e4a90 # Parent 630aaf102ce8c3366f245852a459afd7382ccf69 stub diff -r 630aaf102ce8 -r 9a76064ea527 commitwatcher/event.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/commitwatcher/event.py Sun Oct 13 19:08:46 2013 -0700 @@ -0,0 +1,9 @@ +""" +event system for watching commits +""" + +class EventHandler(object): + """ABC for events""" + +class PathEventHandler(EventHandler): + """events based on paths"""