some changes

master
serr 2025-03-27 15:14:03 +03:00
parent a95f922155
commit 4ab942b0b7
1 changed files with 2 additions and 3 deletions

View File

@ -47,11 +47,10 @@ func (a *App) setupRouter() *http.ServeMux {
router := http.NewServeMux()
// Обработка статических файлов
fs := http.FileServer(http.Dir("assets"))
router.Handle("/assets/", http.StripPrefix("/assets/", fs))
router.Handle("/assets/", http.FileServer(http.Dir(".")))
// Обработка главной страницы
router.HandleFunc("/", a.handleMainPage)
router.Handle("/", http.HandlerFunc(a.handleMainPage))
return router
}