Skip to content

Commit 4cda59e

Browse files
committed
feat: add minimalist "__main__.py" to 'tagstudio' module
1 parent 97ee43c commit 4cda59e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Diff for: src/tagstudio/__main__.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env python
2+
# Copyright (C) 2024 Travis Abendshien (CyanVoxel).
3+
# Licensed under the GPL-3.0 License.
4+
# Created for TagStudio: https://github.com/CyanVoxel/TagStudio
5+
6+
import sys
7+
8+
from tagstudio.main import main
9+
10+
if __name__ == "__main__":
11+
sys.exit(main())

0 commit comments

Comments
 (0)