- go.mod renommé (module viewLogs sans sous-dossier backend/) - logs.go déplacé à la racine avec //go:embed frontend/logs.html - Route GET /viewLogs/logs.html servie directement par le backend - Suppression de backend/ (code désormais à la racine du module) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
747 B
Modula-2
24 lines
747 B
Modula-2
module git.geronzi.fr/proxmoxPanel/viewLogs
|
|
|
|
go 1.26.1
|
|
|
|
require (
|
|
git.geronzi.fr/proxmoxPanel/core/backend v0.0.0
|
|
github.com/gorilla/websocket v1.5.3
|
|
)
|
|
|
|
require (
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/ncruces/go-strftime v1.0.0 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
golang.org/x/crypto v0.49.0 // indirect
|
|
golang.org/x/sys v0.42.0 // indirect
|
|
modernc.org/libc v1.70.0 // indirect
|
|
modernc.org/mathutil v1.7.1 // indirect
|
|
modernc.org/memory v1.11.0 // indirect
|
|
modernc.org/sqlite v1.47.0 // indirect
|
|
)
|
|
|
|
replace git.geronzi.fr/proxmoxPanel/core/backend => ../core/backend
|