Last active
August 6, 2021 11:38
-
-
Save percybolmer/a55c743d085655ce3b2a80e9b3ce421e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// HardwareMonitorServer is the server API for HardwareMonitor service. | |
// All implementations must embed UnimplementedHardwareMonitorServer | |
// for forward compatibility | |
type HardwareMonitorServer interface { | |
// Monitor will output stats about the hardware on the system host | |
Monitor(*EmptyRequest, HardwareMonitor_MonitorServer) error | |
mustEmbedUnimplementedHardwareMonitorServer() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment