1
0
mirror of https://github.com/Chipazawra/v8-1c-cluster-pde.git synced 2025-04-13 11:50:40 +02:00

17 lines
169 B
Go
Raw Normal View History

2021-12-27 15:02:41 +03:00
package main
import (
"log"
2021-12-27 15:11:48 +03:00
"github.com/Chipazawra/v8-1c-cluster-pde/internal/app"
2021-12-27 15:02:41 +03:00
)
func main() {
2021-12-29 12:31:50 +03:00
err := app.RunPusher()
2021-12-27 15:02:41 +03:00
if err != nil {
2021-12-27 15:11:48 +03:00
log.Fatal(err)
2021-12-27 15:02:41 +03:00
}
}