labtime/internal/monitors/monitor.go

7 lines
71 B
Go
Raw Normal View History

2024-09-23 03:14:17 +02:00
package monitors
type Monitor interface {
ID() string
Run() error
}