summaryrefslogtreecommitdiff
path: root/kronos/controllers.py
blob: 781a3494b9577a5e474caed069fe09cdedafade6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# vim: set filencoding=utf8
"""
Controllers for Kronos

@author: Mike Crute (mcrute@ag.com)
@organization: American Greetings Interactive
@date: February 07, 2010
"""


class StartController(object):

    def __call__(self, action):
        pass


class StopController(object):

    def __call__(self, action):
        pass