mirror of
https://github.com/safing/portbase
synced 2025-04-20 01:19:08 +00:00
11 lines
215 B
Go
11 lines
215 B
Go
package testclient
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/safing/portbase/api"
|
|
)
|
|
|
|
func init() {
|
|
api.RegisterAdditionalRoute("/test/", http.StripPrefix("/test/", http.FileServer(http.Dir("./api/testclient/root/"))))
|
|
}
|