Implemented directory walk

This commit is contained in:
2023-10-20 15:29:40 +02:00
parent 0fe419da86
commit 886ea27d54
13 changed files with 100 additions and 20 deletions

14
log/log.go Normal file
View File

@ -0,0 +1,14 @@
package log
import (
"log"
"os"
)
var (
// Info is used for general info messages.
Info = log.New(os.Stdout, "", 0)
// Error is used for error messages.
Error = log.New(os.Stderr, "", 0)
)