()
| 41 | } |
| 42 | |
| 43 | func kiteKeyPath() (string, error) { |
| 44 | kiteHome, err := KiteHome() |
| 45 | if err != nil { |
| 46 | return "", err |
| 47 | } |
| 48 | return filepath.Join(kiteHome, kiteKeyFileName), nil |
| 49 | } |
| 50 | |
| 51 | // Read the contents of the kite.key file. |
| 52 | func Read() (string, error) { |