Added groups and organizations

This commit is contained in:
2015-08-31 19:16:38 +02:00
parent fa1f720123
commit d2eaca15a7
5 changed files with 66 additions and 0 deletions

12
attractsdk/groups.py Normal file
View File

@@ -0,0 +1,12 @@
from .resource import List
from .resource import Find
from .resource import Create
from .resource import Post
from .resource import Update
from .resource import Delete
class Group(List, Find, Create, Post, Update, Delete):
"""Group class wrapping the REST nodes endpoint
"""
path = "groups"