Compare commits

..

No commits in common. "main" and "feature/upgrade-ui" have entirely different histories.

2 changed files with 6 additions and 20 deletions

View File

@ -28,13 +28,9 @@ Vlastnosti:
---
## Rychlý start (GUI)
## Rychlý start (gui)
```bash
# 1) po buildnutí (go build .) stačí spustit binárku otevře se GUI
./fckeuspy-go
# Alternativně přes go run
go run . gui
```
@ -137,15 +133,11 @@ Formát payloadu:
---
## Spuštění (GUI / Web)
## Fyne GUI režim
Spuštění desktopu (GUI):
Spuštění desktopu:
```bash
# po buildnutí (go build .)
./fckeuspy-go
# nebo přes go run
go run . gui
```
@ -161,8 +153,6 @@ HTTP režim zůstává:
```bash
go run . web
# nebo po buildnutí (go build .)
./fckeuspy-go web
```
---

4
cmd.go
View File

@ -10,10 +10,6 @@ var rootCmd = &cobra.Command{
Use: "fckeuspy",
Short: "Hybrid RSA+AES šifrovací nástroj (GUI / HTTP)",
Long: "Fckeuspy: nástroj pro šifrování a dešifrování pomocí hybridního RSA-OAEP + AES-GCM, s Fyne GUI a HTTP serverem.",
// Default: run GUI when executed without subcommand
Run: func(cmd *cobra.Command, args []string) {
runFyne()
},
}
var guiCmd = &cobra.Command{