13 lines
227 B
Go
13 lines
227 B
Go
package routes
|
|
|
|
import (
|
|
"database/sql"
|
|
"net/http"
|
|
|
|
"synlotto-website/internal/handlers"
|
|
)
|
|
|
|
func SetupResultRoutes(mux *http.ServeMux, db *sql.DB) {
|
|
mux.HandleFunc("/results/thunderball", handlers.ResultsThunderball(db))
|
|
}
|