This commit is contained in:
Bel LaPointe
2025-04-24 21:12:46 -06:00
parent 0e0ade420a
commit a174e6834d
5 changed files with 46 additions and 25 deletions

10
src/cmd/cron/main.go Normal file
View File

@@ -0,0 +1,10 @@
package cron
import (
"context"
"io"
)
func Main(ctx context.Context) error {
return io.EOF
}