1
0
mirror of https://github.com/Chipazawra/v8-1c-cluster-pde.git synced 2025-04-11 11:42:19 +02:00
2021-12-29 12:31:50 +03:00

17 lines
169 B
Go

package main
import (
"log"
"github.com/Chipazawra/v8-1c-cluster-pde/internal/app"
)
func main() {
err := app.RunPusher()
if err != nil {
log.Fatal(err)
}
}