1
0
mirror of https://github.com/Chipazawra/v8-1c-cluster-pde.git synced 2025-11-06 08:49:31 +02:00
Files
v8-1c-cluster-pde/cmd/app/main.go
chipazawra 95ce08a734 refactor
2021-12-30 14:07:24 +03:00

16 lines
162 B
Go

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