mirror of
https://github.com/Dadido3/Scanyonero.git
synced 2025-06-06 17:30:00 +00:00
16 lines
239 B
Go
16 lines
239 B
Go
package main
|
|
|
|
import (
|
|
"path/filepath"
|
|
"time"
|
|
)
|
|
|
|
func init() {
|
|
runner := Runner{
|
|
InputPatterns: []string{filepath.Join(".", "input", "*.pdf")},
|
|
OutputPath: filepath.Join("."),
|
|
Interval: 5 * time.Second,
|
|
}
|
|
runner.Run()
|
|
}
|