mirror of
https://github.com/tcsenpai/Zundler.git
synced 2025-06-06 19:45:27 +00:00
14 lines
233 B
Python
14 lines
233 B
Python
def main():
|
|
from .args import parse_args
|
|
args = parse_args()
|
|
|
|
from .embed import embed_assets
|
|
embed_assets(
|
|
args.input_path,
|
|
output_path=args.output_path,
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|