service.proto 287 B

12345678910111213141516
  1. syntax = "proto3";
  2. option go_package = "./service";
  3. package service;
  4. enum NanoServiceStatus {
  5. NanoServiceStopped = 0;
  6. NanoServiceRunning = 1;
  7. NanoServiceError = 2;
  8. }
  9. message NanoServiceStats {
  10. string name = 1;
  11. NanoServiceStatus status = 2;
  12. string error = 3;
  13. uint64 upTime = 4;
  14. }