gofiber-study/services/wol/wol.go

15 lines
137 B
Go
Raw Normal View History

2022-10-30 01:42:50 +08:00
package wol
type Service struct {
}
var Services *Service
func InitService() {
Services = &Service{}
}
2022-10-30 02:47:48 +08:00
func WakeUp(mac string) {
}