Created
December 10, 2013 11:34
-
-
Save dbellettini/7889281 to your computer and use it in GitHub Desktop.
groups.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from smart_m3.m3_kp_api import m3_kp_api | |
class GroupManager(object): | |
def __init__(self, kp:m3_kp_api): | |
self.kp = kp | |
def create(self, name): | |
pass | |
def delete(self, uri): | |
pass | |
def add_user(self, group_uri, user_uri): | |
pass | |
def remove_user(self, group_uri, user_uri): | |
pass | |
def count_users(self, group_uri): | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment