From 9a2da81b11ad0064cca24ce7974827d032309369 Mon Sep 17 00:00:00 2001 From: tjpcc Date: Mon, 1 May 2023 07:56:25 -0600 Subject: name change gus -> sliderule --- contrib/cgi/spartan.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'contrib/cgi/spartan.go') diff --git a/contrib/cgi/spartan.go b/contrib/cgi/spartan.go index 01ebb19..6994466 100644 --- a/contrib/cgi/spartan.go +++ b/contrib/cgi/spartan.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" - "tildegit.org/tjp/gus" - "tildegit.org/tjp/gus/spartan" + sr "tildegit.org/tjp/sliderule" + "tildegit.org/tjp/sliderule/spartan" ) // SpartanCGIDirectory runs executable files relative to a root directory in the file system. @@ -14,9 +14,9 @@ import ( // It will also find any run any executable _part way_ through the path, so for example a // request for /foo/bar/baz can also run an executable found at /foo or /foo/bar. In such // a case the PATH_INFO environment variable will include the remaining portion of the URI. -func SpartanCGIDirectory(pathRoot, fsRoot string) gus.Handler { +func SpartanCGIDirectory(pathRoot, fsRoot string) sr.Handler { fsRoot = strings.TrimRight(fsRoot, "/") - return gus.HandlerFunc(func(ctx context.Context, request *gus.Request) *gus.Response { + return sr.HandlerFunc(func(ctx context.Context, request *sr.Request) *sr.Response { if !strings.HasPrefix(request.Path, pathRoot) { return nil } -- cgit v1.2.3