mirror of
https://gitlab.com/fabinfra/fabaccess/pyfabapi.git
synced 2025-03-12 23:01:45 +01:00
13 lines
182 B
Python
13 lines
182 B
Python
|
|
||
|
|
||
|
class UserSystem:
|
||
|
"""
|
||
|
Higher-level API for managing users
|
||
|
"""
|
||
|
|
||
|
api_usersystem = None
|
||
|
|
||
|
def __init__(self, usersystem):
|
||
|
self.api_usersystem = usersystem
|
||
|
|