router.go 200 B

12345678910111213
  1. package admin
  2. import (
  3. "net/http"
  4. )
  5. func SetupRouter(c Config) (mux *http.ServeMux) {
  6. mux = http.NewServeMux()
  7. mux.Handle("/", c.pb)
  8. mux.Handle("/admin/page_builder/", c.pageBuilder)
  9. return
  10. }