This commit is contained in:
2023-12-01 09:56:06 +01:00
commit 1f4a477077
46 changed files with 14153 additions and 0 deletions

6
logic/jobs.go Normal file
View File

@@ -0,0 +1,6 @@
package logic
type Job interface {
Start() error
Stop()
}