fix worker.yaml path

This commit is contained in:
xkm
2025-04-23 19:23:33 +08:00
committed by GitHub
parent eaa955ccfe
commit 981cd3f16a

View File

@@ -8,7 +8,7 @@ import (
)
func main() {
cfg := config.LoadWorker("/home/xkm/project/runbin/config/worker.yaml")
cfg := config.LoadWorker("config/worker.yaml")
// Initialize storage
var store repository.PasteRepository
@@ -28,4 +28,4 @@ func main() {
work := worker.NewWorker(store, cfg)
work.Run()
}
}