mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +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]
|
|
}
|
|
)
|