feat: auth, site creation with PHP version selection

This commit is contained in:
orohi
2026-06-17 04:46:44 +03:00
parent 0f31c24bf9
commit b7753505b8
20 changed files with 1097 additions and 114 deletions
+1 -3
View File
@@ -3,7 +3,6 @@ package main
import (
"context"
"errors"
"fmt"
"log"
"net/http"
"os"
@@ -31,8 +30,7 @@ func main() {
}
defer pool.Close()
addr := fmt.Sprintf(":%s", cfg.HTTPPort)
srv, err := server.New(pool, addr)
srv, err := server.New(pool, cfg)
if err != nil {
log.Fatal(err)
}