7 lines
140 B
Python
7 lines
140 B
Python
from server.person import Person
|
||
__people__ = Person()
|
||
|
||
response.body = {'person': __people__.get(int(path['id']))}
|
||
|
||
# vim:filetype=python
|