clearml-server/webserver/user/__init__.py

8 lines
159 B
Python
Raw Normal View History

2019-06-10 21:24:35 +00:00
from factory import Factory
from .simple import SimpleUser, CreateUserError, AUTH_TOKEN_COOKIE_KEY
class UserFactory(Factory):
default_cls = SimpleUser