indieauth-server/internal/router/router.go

10 lines
113 B
Go
Raw Normal View History

2024-10-12 21:38:53 +01:00
package router
import "net/http"
func NewServeMux() *http.ServeMux {
mux := http.NewServeMux()
return mux
}