mirror of
https://gitea.com/gitea/act_runner.git
synced 2025-12-21 11:32:32 +00:00
10 lines
165 B
Go
10 lines
165 B
Go
|
|
package core
|
||
|
|
|
||
|
|
// Runner struct
|
||
|
|
type Runner struct {
|
||
|
|
ID int64 `json:"id"`
|
||
|
|
UUID string `json:"uuid"`
|
||
|
|
Name string `json:"name"`
|
||
|
|
Token string `json:"token"`
|
||
|
|
}
|