Files
monibuca/device.go
2024-09-06 16:15:08 +08:00

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]
}
)