diff options
| author | gabrix73 <gabriel1@frozenstar.info> | 2026-04-12 16:02:57 +0200 |
|---|---|---|
| committer | gabrix73 <gabriel1@frozenstar.info> | 2026-04-12 16:02:57 +0200 |
| commit | be916cce968373042af601e0cc3bf66c0b9e4056 (patch) | |
| tree | 3a7e6b42f085ecd5f20f67b4a9b587863067ee58 | |
| parent | 889a154b66891074a4d92ca1d443fb4e4b72c22a (diff) | |
| download | khimera-be916cce968373042af601e0cc3bf66c0b9e4056.tar.gz khimera-be916cce968373042af601e0cc3bf66c0b9e4056.tar.xz khimera-be916cce968373042af601e0cc3bf66c0b9e4056.zip | |
fix: add missing fyne import, remove unused mesh and tor imports in main
| -rw-r--r-- | khimera-main.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/khimera-main.go b/khimera-main.go index 2099ae5..6cb0bdf 100644 --- a/khimera-main.go +++ b/khimera-main.go @@ -8,6 +8,7 @@ import ( "path/filepath" "runtime" + "fyne.io/fyne/v2" "fyne.io/fyne/v2/app" "fyne.io/fyne/v2/container" "fyne.io/fyne/v2/widget" @@ -16,8 +17,6 @@ import ( "khimera/identity" "khimera/session" "khimera/transport" - "khimera/transport/mesh" - "khimera/transport/tor" ) // PortableApp represents the portable Khimera application |
