mirror of
https://github.com/clearml/clearml-server
synced 2025-02-12 07:38:28 +00:00
8 lines
159 B
Python
8 lines
159 B
Python
![]() |
from factory import Factory
|
||
|
|
||
|
from .simple import SimpleUser, CreateUserError, AUTH_TOKEN_COOKIE_KEY
|
||
|
|
||
|
|
||
|
class UserFactory(Factory):
|
||
|
default_cls = SimpleUser
|