mirror of
https://github.com/langhuihui/monibuca.git
synced 2026-05-08 21:31:34 +08:00
13 lines
148 B
Go
13 lines
148 B
Go
package m7s
|
|
|
|
import "m7s.live/m7s/v5/pkg/task"
|
|
|
|
type (
|
|
Device struct {
|
|
task.Work
|
|
}
|
|
DeviceManager struct {
|
|
task.Manager[uint32, *Device]
|
|
}
|
|
)
|