From 96ed381b595abe28790d066dc6dbdd31702894ae Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Thu, 18 Dec 2008 21:14:21 -0600 Subject: [PATCH] Update HomeFS example to include controllers list --- routefs/examples/homefs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/routefs/examples/homefs.py b/routefs/examples/homefs.py index 893977b..1666fdd 100755 --- a/routefs/examples/homefs.py +++ b/routefs/examples/homefs.py @@ -13,6 +13,7 @@ import routefs from routes import Mapper class HomeFS(routefs.RouteFS): + controllers = ['getList', 'getUser'] def __init__(self, *args, **kwargs): super(HomeFS, self).__init__(*args, **kwargs) self.cache = {} -- 1.7.9.5