mirror of
https://github.com/airlabspl/uptimemonitor.git
synced 2025-08-14 12:19:19 +02:00
18 lines
206 B
Go
18 lines
206 B
Go
package service
|
|
|
|
import (
|
|
"uptimemonitor/store"
|
|
)
|
|
|
|
type Service struct {
|
|
CheckService
|
|
}
|
|
|
|
func New(store *store.Store) *Service {
|
|
return &Service{
|
|
CheckService: CheckService{
|
|
Store: store,
|
|
},
|
|
}
|
|
}
|