gofiber-study/services/wol/wol.go

15 lines
137 B
Go

package wol
type Service struct {
}
var Services *Service
func InitService() {
Services = &Service{}
}
func WakeUp(mac string) {
}