handleSystemInfo returns info about the system (CPU, memory, disk...).
(r *Request)
| 100 | |
| 101 | // handleSystemInfo returns info about the system (CPU, memory, disk...). |
| 102 | func handleSystemInfo(r *Request) (interface{}, error) { |
| 103 | return systeminfo.New() |
| 104 | } |
| 105 | |
| 106 | // handleLog prints a log message to stderr. |
| 107 | func (k *Kite) handleLog(r *Request) (interface{}, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected