8 lines
152 B
Python
8 lines
152 B
Python
#!/usr/bin/python3
|
|
|
|
def __getattr__(name):
|
|
match name:
|
|
case "Library":
|
|
from .library import Library
|
|
|
|
return Library
|