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 72b2e9afa9 - Show all commits

f-8: code: add first agent binari #8

Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
GnomeZworc 2025-12-22 22:49:17 +01:00
Signed by: nicolas.boufideline
GPG key ID: 4406BBBF8845D632

14
cmd/agent/main.go Normal file
View file

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