Files
BatchuKVM/server/service/hid/service.go

12 lines
117 B
Go

package hid
type Service struct {
hid *Hid
}
func NewService() *Service {
return &Service{
hid: GetHid(),
}
}