mirror of
https://github.com/Dadido3/Scanyonero.git
synced 2025-06-06 01:10:00 +00:00
- Make compatible with at least go 1.19 - Fix paths - Add more log output - Update README.md - Fix runner - Update systemd service
13 lines
170 B
Go
13 lines
170 B
Go
package main
|
|
|
|
import "log"
|
|
|
|
func main() {
|
|
log.Printf("Starting OCRmyPDF-runner.")
|
|
|
|
// The runners will be started in some init.go file.
|
|
|
|
// Wait forever.
|
|
select {}
|
|
}
|