github.com/safing/portbase@v0.19.5/api/testclient/serve.go (about)

     1  package testclient
     2  
     3  import (
     4  	"net/http"
     5  
     6  	"github.com/safing/portbase/api"
     7  )
     8  
     9  func init() {
    10  	api.RegisterHandler("/test/", http.StripPrefix("/test/", http.FileServer(http.Dir("./api/testclient/root/"))))
    11  }