Skip to content

Instantly share code, notes, and snippets.

View jufianto's full-sized avatar

Jufianto Henri jufianto

View GitHub Profile
@jufianto
jufianto / agent.proto
Created November 9, 2024 13:57
Init your golang gRPC Services
syntax = "proto3";
option go_package = "github.com/jufianto/state-agent/agentsrv-proto";
enum TaskStatus{
UNKNOWN = 0;
PROCESSING = 1;
FAILED = 2;
SUCCESS = 3;
}