assets path added
parent
7f2825020b
commit
9091ccde3b
2
main.go
2
main.go
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue