feature-8 #9

Merged
nicolas.boufideline merged 27 commits from feature-8 into main 2026-01-04 16:51:23 +00:00
Showing only changes of commit 1ac1e61864 - Show all commits

f-8: code: move binary name #8

Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
GnomeZworc 2025-12-26 23:02:14 +01:00
Signed by: nicolas.boufideline
GPG key ID: 4406BBBF8845D632

View file

@ -5,10 +5,13 @@ import (
"os"
)
var (
bin_name = os.Args[0]
)
func main() {
bin_name := os.Args[0]
fmt.Printf("%s: Start process\n", bin_name)
os.Exit(5)
os.Exit(0)
}