assets path added

master
serr 2025-03-27 22:48:42 +03:00
parent 7f2825020b
commit 9091ccde3b
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ func (a *App) setupRouter() *http.ServeMux {
router := http.NewServeMux()
// Обработка статических файлов
router.Handle("/assets/", http.FileServer(http.Dir(".")))
router.Handle(cfg.AssetsPath, http.FileServer(http.Dir(".")))
// Обработка главной страницы
router.Handle("/", http.HandlerFunc(a.handleMainPage))