Files
Hippolyzer/pyogp/lib/base/regiondomain.py

17 lines
323 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
self.details = {}