mirror of
https://gitlab.com/fabinfra/fabaccess/pyfabapi.git
synced 2025-03-12 14:51:42 +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
|
|
|