1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-06-03 09:38:05 +02:00
ldapcherry/ldapcherry/backend/__init__.py

24 lines
366 B
Python
Raw Normal View History

2015-04-15 21:13:14 +02:00
# -*- coding: utf-8 -*-
# vim:set expandtab tabstop=4 shiftwidth=4:
#
# The MIT License (MIT)
# LdapCherry
# Copyright (c) 2014 Carpentier Pierre-Francois
class Backend:
def __init__(self):
pass
2015-05-20 17:13:18 +02:00
def auth(self):
pass
def add_to_group(self):
2015-04-15 21:13:14 +02:00
pass
def set_attr(self):
pass
2015-05-20 17:13:18 +02:00
def rm_from_group(self):
2015-04-15 21:13:14 +02:00
pass