mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -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
|
|
}
|