go-jamming/app/routes.go

11 lines
148 B
Go
Raw Normal View History

2021-04-07 10:06:16 +02:00
package app
import (
"github.com/wgroeneveld/go-jamming/app/index"
)
func (s *server) routes() {
s.router.HandleFunc("/", index.HandleIndex)
}