delete unused structs

This commit is contained in:
Lunny Xiao
2022-10-16 23:11:28 +08:00
committed by Jason Song
parent 4c2d976629
commit 482832da76
19 changed files with 190 additions and 782 deletions

View File

@@ -16,8 +16,8 @@ import (
// RunJob represents a job of a run
type RunJob struct {
ID int64
RunID int64
Run *Run `xorm:"-"`
RunID int64 `xorm:"index"`
Run *Run `xorm:"-"`
Name string
Ready bool // ready to be executed
Attempt int64