RegisterValue is the type of the value that is saved to the storage
| 2 | |
| 3 | // RegisterValue is the type of the value that is saved to the storage |
| 4 | type RegisterValue struct { |
| 5 | // URL is the Kite's URL that can be accessed |
| 6 | URL string `json:"url"` |
| 7 | |
| 8 | // KeyId specifies the public-private key pair reference the kite is using. |
| 9 | // This is currently only used by Kontrol itself internally, however it |
| 10 | // might be changed in the future. |
| 11 | KeyID string `json:"key_id"` |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected