some changes
parent
a95f922155
commit
4ab942b0b7
5
main.go
5
main.go
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue