Initial code commit (credentials daemon)

This commit is contained in:
2025-04-02 00:10:20 -04:00
parent 8465198e49
commit 1cd123ab31
6 changed files with 198 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package main
import (
"fmt"
"os"
)
func main() {
if len(os.Args) > 1 {
switch os.Args[1] {
case "client":
fmt.Println("RPC Reply: " + CallDaemon())
default:
StartDaemon()
}
} else {
StartDaemon()
}
}