Set the daemon endpoint setting to the local Graviton tree
(s string)
| 526 | |
| 527 | // Set the daemon endpoint setting to the local Graviton tree |
| 528 | func setDaemon(s string) (err error) { |
| 529 | StoreValue("settings", []byte("endpoint"), []byte(s)) |
| 530 | globals.Arguments["--daemon-address"] = s |
| 531 | session.Daemon = s |
| 532 | return |
| 533 | } |
| 534 | |
| 535 | // Get Cyberdeck endpoint setting from the local Graviton tree |
| 536 | func getCyberdeck(key string) (r string) { |
no test coverage detected