mirror of
https://github.com/Chipazawra/v8-1c-cluster-pde.git
synced 2024-12-27 01:34:09 +02:00
17 lines
163 B
Go
17 lines
163 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)
|
|
}
|
|
}
|