Skip to content
Snippets Groups Projects
main.go 297 B
Newer Older
  • Learn to ignore specific revisions
  • Rémi PAILHAREY's avatar
    Rémi PAILHAREY committed
    package main
    
    import (
    	"log"
    	"net/http"
    
    	"forge.grandlyon.com/web-et-numerique/llle_project/backoffice-server/internal/rootmux"
    )
    
    func main() {
    	log.Println("--- Server is starting ---")
    
    	// Create main server
    	mainMux := rootmux.CreateRootMux("web")
    	http.ListenAndServe(":8080", mainMux)
    }