aboutsummaryrefslogtreecommitdiff
path: root/desktop/package
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2021-12-21 14:16:10 -0800
committerMicah Lee <micah@micahflee.com>2021-12-21 14:16:10 -0800
commitf0d40beb77a9c27176077c0e42991f156930a63e (patch)
tree2eb82a887a1bb31906c5ca83759ddb5486cf7193 /desktop/package
parentf4fb212dbc7d0a027080c5f8c325c32ee2362072 (diff)
downloadonionshare-f0d40beb77a9c27176077c0e42991f156930a63e.tar.gz
onionshare-f0d40beb77a9c27176077c0e42991f156930a63e.zip
Start implementing cx_Freeze
Diffstat (limited to 'desktop/package')
-rw-r--r--desktop/package/onionshare-cli.py3
-rw-r--r--desktop/package/onionshare.py3
2 files changed, 6 insertions, 0 deletions
diff --git a/desktop/package/onionshare-cli.py b/desktop/package/onionshare-cli.py
new file mode 100644
index 00000000..3cb03d59
--- /dev/null
+++ b/desktop/package/onionshare-cli.py
@@ -0,0 +1,3 @@
+import onionshare_cli
+
+onionshare_cli.main()
diff --git a/desktop/package/onionshare.py b/desktop/package/onionshare.py
new file mode 100644
index 00000000..f9b7c4c8
--- /dev/null
+++ b/desktop/package/onionshare.py
@@ -0,0 +1,3 @@
+import onionshare
+
+onionshare.main()