Add basic structure

This commit is contained in:
2025-06-27 18:01:50 +02:00
commit fbbee71052
5 changed files with 48 additions and 0 deletions

3
crontab/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module crontab
go 1.23.6

12
crontab/main.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"flag"
logger "git.site.quack-lab.dev/dave/cylogger"
)
func main() {
flag.Parse()
logger.InitFlag()
}