mirror of
https://github.com/clearml/clearml-server
synced 2025-02-07 13:33:42 +00:00
7 lines
127 B
Python
7 lines
127 B
Python
from factory import Factory
|
|
from .simple import SimpleSession
|
|
|
|
|
|
class SessionFactory(Factory):
|
|
default_cls = SimpleSession
|