mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-19 21:37:57 +08:00
13 lines
268 B
Python
Executable File
13 lines
268 B
Python
Executable File
#!/usr/bin/env python3.11
|
|
# Released under the MIT License. See LICENSE for details.
|
|
#
|
|
"""Command line wrapper for the spinoff system."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from batools.spinoff import spinoff_main
|
|
|
|
spinoff_main()
|