SimpleCloudNotifier/server/logic/jobs.go
2022-11-20 15:40:22 +01:00

7 lines
55 B
Go

package logic
type Job interface {
Start()
Stop()
}