Created a simple shoutbox plugin for spline.
[spline-shoutbox.git] / lib / spline / plugins / shoutbox / controllers / shoutbox.py
1 import logging
2
3 from pylons import request, response, session, tmpl_context as c
4 from pylons.controllers.util import abort, redirect_to
5
6 from spline.lib.base import BaseController, render
7 #from spline import model
8
9 class ShoutboxController(BaseController):
10
11 def index(self):
12 return 'shoutbox here'
13