act_runner/core/runner.go

16 lines
317 B
Go
Raw Normal View History

package core
const (
UUIDHeader = "x-runner-uuid"
TokenHeader = "x-runner-token"
)
// Runner struct
type Runner struct {
2022-10-16 23:51:53 +08:00
ID int64 `json:"id"`
UUID string `json:"uuid"`
Name string `json:"name"`
Token string `json:"token"`
ForgeInstance string `json:"forge_instance"`
}