package rootmux

import (
	"net/http"
)

func CreateRootMux(staticDir string) http.Handler {
	mainMux := http.NewServeMux()

	return mainMux
}