Files
Hippolyzer/pyogp/lib/base/regiondomain.py
locklainn.linden 5bb135727d
2008-06-27 15:10:24 +00:00

14 lines
283 B
Python

from zope.interface import implements
from interfaces import IRegion
class Region(object):
"""models a region endpoint"""
implements(IRegion)
def __init__(self, uri):
"""initialize the region with the region uri"""
self.uri = uri