Remove unused gRPC and JWT related code, including Woodpecker service definitions and JWT token management.

This commit is contained in:
2026-03-26 11:42:14 +07:00
parent 4de6baee61
commit fbbecd7674
36 changed files with 2708 additions and 4996 deletions

13
internal/dto/log.go Normal file
View File

@@ -0,0 +1,13 @@
package dto
type LogEntry struct {
JobID string `json:"job_id"`
Line string `json:"line"`
Progress float64 `json:"progress"`
}
type SystemResource struct {
AgentID string `json:"agent_id"`
CPU float64 `json:"cpu"`
RAM float64 `json:"ram"`
}