restructure and include Makefile

This commit is contained in:
Sam Hoffman
2026-01-30 17:10:13 -05:00
parent 1bab8ab876
commit 3e996996ea
6 changed files with 13 additions and 1 deletions

21
cmd/thanks/main.go Normal file
View File

@@ -0,0 +1,21 @@
package main
import (
"context"
"git.gentoo.party/sam/thanks/internal/jobs"
)
func main() {
myJob := jobs.BackupJob{
Source: "zroot/home/sam/thanks",
Target: "zrust/backup/weller/thanks",
TargetHost: "backup@woodford.gentoo.party",
Keep: 30,
Prefix: "thanks-",
Recursive: false,
}
ctx := context.Background()
myJob.Do(ctx)
}