feat: fix agent logger display

This commit is contained in:
engigu
2026-02-09 18:28:14 +08:00
parent 6402943462
commit eb05eafb72
15 changed files with 181 additions and 118 deletions
+1 -1
View File
@@ -35,4 +35,4 @@ type Script struct {
func (Script) TableName() string {
return constant.TablePrefix + "scripts"
}
}
+8
View File
@@ -74,6 +74,14 @@ func (t *Task) GetTimeout() int {
return t.Timeout
}
func (t *Task) GetWorkDir() string {
return t.WorkDir
}
func (t *Task) GetEnvs() string {
return t.Envs
}
func (t *Task) GetSchedule() string {
return t.Schedule
}
+1 -1
View File
@@ -20,4 +20,4 @@ type User struct {
func (User) TableName() string {
return constant.TablePrefix + "users"
}
}