summaryrefslogtreecommitdiff
path: root/kronos/controllers.py
diff options
context:
space:
mode:
Diffstat (limited to 'kronos/controllers.py')
-rw-r--r--kronos/controllers.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/kronos/controllers.py b/kronos/controllers.py
new file mode 100644
index 0000000..781a349
--- /dev/null
+++ b/kronos/controllers.py
@@ -0,0 +1,20 @@
1# vim: set filencoding=utf8
2"""
3Controllers for Kronos
4
5@author: Mike Crute (mcrute@ag.com)
6@organization: American Greetings Interactive
7@date: February 07, 2010
8"""
9
10
11class StartController(object):
12
13 def __call__(self, action):
14 pass
15
16
17class StopController(object):
18
19 def __call__(self, action):
20 pass