1
0
mirror of https://gitea.com/gitea/act_runner synced 2026-05-06 01:37:57 +02:00
Files
act_runner/core/runner.go
2022-11-24 15:37:37 +08:00

12 lines
201 B
Go

package core
const UUIDHeader = "x-runner-uuid"
// Runner struct
type Runner struct {
ID int64 `json:"id"`
UUID string `json:"uuid"`
Name string `json:"name"`
Token string `json:"token"`
}