diff options
author | Leif Johansson <leifj@sunet.se> | 2011-06-19 23:39:34 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2011-06-19 23:39:34 +0200 |
commit | a987b0cbf7874c4c547536270b80e432561ddfd8 (patch) | |
tree | 416546b83a5c591d65f55b72a49024122ae55a33 /coip/apps/opensocial/__init__.py | |
parent | 3cb58a9e9c9aae32ae1b22c3d8e83528df766764 (diff) |
initial opensocial people service
Diffstat (limited to 'coip/apps/opensocial/__init__.py')
-rw-r--r-- | coip/apps/opensocial/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/coip/apps/opensocial/__init__.py b/coip/apps/opensocial/__init__.py new file mode 100644 index 0000000..289f68c --- /dev/null +++ b/coip/apps/opensocial/__init__.py @@ -0,0 +1,6 @@ +from tastypie.api import Api +from coip.apps.opensocial.people import PersonResource, MembershipResource + +opensocial_v1 = Api(api_name = "1.0") +opensocial_v1.register(PersonResource()) +opensocial_v1.register(MembershipResource())
\ No newline at end of file |