7 lines
170 B
Python
Executable File
7 lines
170 B
Python
Executable File
#!/usr/bin/env python3
|
||
"""Compatibility shim – delegates to the truenas_migrate package."""
|
||
from truenas_migrate.cli import main
|
||
|
||
if __name__ == "__main__":
|
||
main()
|