summaryrefslogtreecommitdiff
path: root/kronos/parser.py
blob: 5f791449cb5416db6271f19ad59b7c9c1862d72a (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
"""
Activity Parser

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

class Activity(object):

    activity = "my activity"
    description = "Some cool stuff!"
    category = "Home"


class ActivityParser(object):

    def parse(self, text):
        return Activity()