mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
14 lines
154 B
Go
14 lines
154 B
Go
package task
|
|
|
|
type Work struct {
|
|
Job
|
|
}
|
|
|
|
func (m *Work) keepalive() bool {
|
|
return true
|
|
}
|
|
|
|
func (*Work) GetTaskType() TaskType {
|
|
return TASK_TYPE_Work
|
|
}
|