alrm/check_ping.go

14 lines
182 B
Go
Raw Normal View History

2020-08-20 08:44:56 -08:00
package main
type CheckPing struct {
Address string
}
func (c *CheckPing) Check() error {
return nil
}
func (c *CheckPing) Parse(tk string) (bool, error) {
return false, nil
}