Values returns the values of each field in order
()
| 67 | |
| 68 | // Values returns the values of each field in order |
| 69 | func (k *Kite) Values() []string { |
| 70 | return []string{ |
| 71 | k.Username, |
| 72 | k.Environment, |
| 73 | k.Name, |
| 74 | k.Version, |
| 75 | k.Region, |
| 76 | k.Hostname, |
| 77 | k.ID, |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | func (k *Kite) Validate() error { |
| 82 | s := k.String() |
no outgoing calls
no test coverage detected