comparison ikweb/tools/lazy/www/work/__init__.py @ 247:7747bbe5b68e

start to develope Information Exchange Center of Ikariam Game. (prototpye)
author "Hisn Yi, Chen <ossug.hychen@gmail.com>"
date Mon, 01 Dec 2008 00:27:22 +0800
parents
children
comparison
equal deleted inserted replaced
246:60c4b4b78a01 247:7747bbe5b68e
1 from lazy.www.work.fetch import Fetcher
2 from lazy.www.work.find import Finder
3 from lazy.www.core import SemiProduct
4
5 class WorkFlow:
6
7 def __init__(self, worker):
8 self.worker = worker
9
10 def __getattr__(self, name):
11 return getattr(self.worker, name)