Add stage planning and placeholder runner

This commit is contained in:
2026-05-02 11:05:28 -05:00
parent fb659e0d3d
commit 78e7e4f41b
14 changed files with 598 additions and 68 deletions

7
internal/app/time.go Normal file
View File

@@ -0,0 +1,7 @@
package app
import "time"
var nowUTC = func() time.Time {
return time.Now().UTC()
}