Skip to content
Snippets Groups Projects
rootmux.go 143 B
Newer Older
  • Learn to ignore specific revisions
  • Rémi PAILHAREY's avatar
    Rémi PAILHAREY committed
    package rootmux
    
    import (
    	"net/http"
    )
    
    func CreateRootMux(staticDir string) http.Handler {
    	mainMux := http.NewServeMux()
    
    	return mainMux
    }