From a987b0cbf7874c4c547536270b80e432561ddfd8 Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Sun, 19 Jun 2011 23:39:34 +0200 Subject: initial opensocial people service --- coip/apps/opensocial/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 coip/apps/opensocial/__init__.py (limited to 'coip/apps/opensocial/__init__.py') 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 -- cgit v1.1