mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
14 lines
204 B
Go
14 lines
204 B
Go
|
|
package job
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
|
||
|
|
jobmdl "go-common/app/interface/main/web-show/model/job"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Jobs get job infos
|
||
|
|
func (s *Service) Jobs(c context.Context) (js []*jobmdl.Job) {
|
||
|
|
js = s.cache
|
||
|
|
return
|
||
|
|
}
|