diff --git a/internal/source/meta-tags.go b/internal/source/meta-tags.go index aa13f46c9..d1c271ec3 100644 --- a/internal/source/meta-tags.go +++ b/internal/source/meta-tags.go @@ -23,6 +23,7 @@ import ( type sourceMeta struct { repoRootPrefix string // import path prefix corresponding to repo root repoURL string // URL of the repo root + repoSubdir string // subdirectory within the repo (since Go 1.25) // The next two are only present in a go-source tag. dirTemplate string // URL template for a directory fileTemplate string // URL template for a file and line @@ -98,8 +99,16 @@ metaScan: } switch nameAttr { case "go-import": - if len(fields) != 3 { - errorMessage = "go-import meta tag content attribute does not have three fields" + repoSubdir := "" + switch len(fields) { + case 3: + // go-import meta tag support minium 3 fields (root-path vcs repo-url). + break // good to proceed + case 4: + // go-import meta tag support minium 3 fields (root-path vcs repo-url), and additionally "subdirectory" field since Go 1.25. + repoSubdir = fields[3] + default: + errorMessage = "go-import meta tag content attribute does not have three or four fields" continue metaScan } if fields[1] == "mod" { @@ -114,6 +123,7 @@ metaScan: sm = &sourceMeta{ repoRootPrefix: repoRootPrefix, repoURL: fields[2], + repoSubdir: repoSubdir, } // Keep going in the hope of finding a go-source tag. case "go-source": @@ -128,16 +138,23 @@ metaScan: } // If go-source repo is "_", then default to the go-import repo. repoURL := fields[1] + // reuse subdirectory field from go-import if present + repoSubdir := "" + if sm != nil { + repoSubdir = sm.repoSubdir + } if repoURL == "_" { if sm == nil { errorMessage = `go-source repo is "_", but no previous go-import tag` break metaScan } repoURL = sm.repoURL + repoSubdir = sm.repoSubdir } sm = &sourceMeta{ repoRootPrefix: repoRootPrefix, repoURL: repoURL, + repoSubdir: repoSubdir, dirTemplate: fields[2], fileTemplate: fields[3], } diff --git a/internal/source/source.go b/internal/source/source.go index 8c3d340c6..349b92123 100644 --- a/internal/source/source.go +++ b/internal/source/source.go @@ -492,6 +492,7 @@ func moduleInfoDynamic(ctx context.Context, client *Client, modulePath, version } } dir := strings.TrimPrefix(strings.TrimPrefix(modulePath, sourceMeta.repoRootPrefix), "/") + dir = path.Join(sourceMeta.repoSubdir, dir) commit, isHash := commitFromVersion(version, dir) if transformCommit != nil { commit = transformCommit(commit, isHash) diff --git a/internal/source/source_test.go b/internal/source/source_test.go index abd9011a7..bdbcf9244 100644 --- a/internal/source/source_test.go +++ b/internal/source/source_test.go @@ -140,6 +140,36 @@ func TestModuleInfoDynamic(t *testing.T) { // empty templates }, }, + { + "slatedb.io/slatedb-go", + // Package with go-import meta tag, where there is subdirectory field (since Go 1.25). + &Info{ + repoURL: "https://github.com/slatedb/slatedb", + moduleDir: "slatedb-go/go", + commit: "slatedb-go/go/v1.2.3", + templates: githubURLTemplates, + }, + }, + { + "edv1n.github.io/go-get-subdirectory-test", + // Package with go-import meta tag, where there is subdirectory field with value `gopkg`. + &Info{ + repoURL: "https://github.com/edv1n/go-get-subdirectory-test", + moduleDir: "gopkg", + commit: "gopkg/v1.2.3", + templates: githubURLTemplates, + }, + }, + { + "edv1n.github.io/go-get-subdirectory-test/sub", + // Package with go-import meta tag, where there is subdirectory field with value `gopkg/sub`. + &Info{ + repoURL: "https://github.com/edv1n/go-get-subdirectory-test", + moduleDir: "gopkg/sub", + commit: "gopkg/sub/v1.2.3", + templates: githubURLTemplates, + }, + }, { "azul3d.org/examples/abs", // The go-source tag has a template that is handled incorrectly by godoc; but we @@ -436,6 +466,12 @@ var testWeb = map[string]string{ `, "https://bob.com/bad/apache": ` `, + // Package with go-import meta tag, where there is subdirectory field (since Go 1.25). + "https://slatedb.io/slatedb-go": ``, + "https://edv1n.github.io/go-get-subdirectory-test": `` + + ``, + "https://edv1n.github.io/go-get-subdirectory-test/sub": `` + + ``, // Package with go-source meta tag, where {file} appears on the right of '#' in the file field URL template. "https://azul3d.org/examples/abs": `` + `` + @@ -534,27 +570,27 @@ func TestMatchLegacyTemplates(t *testing.T) { wantTransformCommitNil bool }{ { - sm: sourceMeta{"", "", "", "https://git.blindage.org/21h/hcloud-dns/src/branch/master{/dir}/{file}#L{line}"}, + sm: sourceMeta{"", "", "", "", "https://git.blindage.org/21h/hcloud-dns/src/branch/master{/dir}/{file}#L{line}"}, wantTemplates: giteaURLTemplates, wantTransformCommitNil: false, }, { - sm: sourceMeta{"", "", "", "https://git.lastassault.de/sup/networkoverlap/-/blob/master{/dir}/{file}#L{line}"}, + sm: sourceMeta{"", "", "", "", "https://git.lastassault.de/sup/networkoverlap/-/blob/master{/dir}/{file}#L{line}"}, wantTemplates: gitlabURLTemplates, wantTransformCommitNil: true, }, { - sm: sourceMeta{"", "", "", "https://git.borago.de/Marco/gqltest/src/master{/dir}/{file}#L{line}"}, + sm: sourceMeta{"", "", "", "", "https://git.borago.de/Marco/gqltest/src/master{/dir}/{file}#L{line}"}, wantTemplates: giteaURLTemplates, wantTransformCommitNil: true, }, { - sm: sourceMeta{"", "", "", "https://git.zx2c4.com/wireguard-windows/tree{/dir}/{file}#n{line}"}, + sm: sourceMeta{"", "", "", "", "https://git.zx2c4.com/wireguard-windows/tree{/dir}/{file}#n{line}"}, wantTemplates: fdioURLTemplates, wantTransformCommitNil: false, }, { - sm: sourceMeta{"", "", "unknown{/dir}", "unknown{/dir}/{file}#L{line}"}, + sm: sourceMeta{"", "", "", "unknown{/dir}", "unknown{/dir}/{file}#L{line}"}, wantTemplates: urlTemplates{ Repo: "", Directory: "unknown/{dir}", diff --git a/internal/tests/source/source_test.go b/internal/tests/source/source_test.go index 9df372271..23c7409a9 100644 --- a/internal/tests/source/source_test.go +++ b/internal/tests/source/source_test.go @@ -389,6 +389,33 @@ func TestModuleInfo(t *testing.T) { "https://blitiri.com.ar/git/r/log/b/master/t/f=go.mod.html#line-1", "", }, + { + "slatedb.io/slatedb-go match github.com/slatedb/slatedb/slatedb-go/go", + "slatedb.io/slatedb-go", "v0.8.2", "go.mod", + "https://github.com/slatedb/slatedb", + "https://github.com/slatedb/slatedb/tree/slatedb-go/go/v0.8.2/slatedb-go/go", + "https://github.com/slatedb/slatedb/blob/slatedb-go/go/v0.8.2/slatedb-go/go/go.mod", + "https://github.com/slatedb/slatedb/blob/slatedb-go/go/v0.8.2/slatedb-go/go/go.mod#L1", + "https://github.com/slatedb/slatedb/raw/slatedb-go/go/v0.8.2/slatedb-go/go/go.mod", + }, + { + "edv1n.github.io/go-get-subdirectory-test match github.com/edv1n/go-get-subdirectory-test with subdir gopkg", + "edv1n.github.io/go-get-subdirectory-test", "v0.0.4", "go.mod", + "https://github.com/edv1n/go-get-subdirectory-test", + "https://github.com/edv1n/go-get-subdirectory-test/tree/gopkg/v0.0.4/gopkg", + "https://github.com/edv1n/go-get-subdirectory-test/blob/gopkg/v0.0.4/gopkg/go.mod", + "https://github.com/edv1n/go-get-subdirectory-test/blob/gopkg/v0.0.4/gopkg/go.mod#L1", + "https://github.com/edv1n/go-get-subdirectory-test/raw/gopkg/v0.0.4/gopkg/go.mod", + }, + { + "edv1n.github.io/go-get-subdirectory-test/sub match github.com/edv1n/go-get-subdirectory-test with subdir gopkg/sub", + "edv1n.github.io/go-get-subdirectory-test/sub", "v0.0.4", "go.mod", + "https://github.com/edv1n/go-get-subdirectory-test", + "https://github.com/edv1n/go-get-subdirectory-test/tree/gopkg/sub/v0.0.4/gopkg/sub", + "https://github.com/edv1n/go-get-subdirectory-test/blob/gopkg/sub/v0.0.4/gopkg/sub/go.mod", + "https://github.com/edv1n/go-get-subdirectory-test/blob/gopkg/sub/v0.0.4/gopkg/sub/go.mod#L1", + "https://github.com/edv1n/go-get-subdirectory-test/raw/gopkg/sub/v0.0.4/gopkg/sub/go.mod", + }, } { t.Run(test.desc, func(t *testing.T) { info, err := source.ModuleInfo(context.Background(), source.NewClient(client), test.modulePath, test.version) diff --git a/internal/tests/source/testdata/TestModuleInfo.replay b/internal/tests/source/testdata/TestModuleInfo.replay index eb9dae22d..680962daf 100644 --- a/internal/tests/source/testdata/TestModuleInfo.replay +++ b/internal/tests/source/testdata/TestModuleInfo.replay @@ -14176,6 +14176,1935 @@ }, "Body": "" } + }, + { + "ID": "8197bbb63fa94455", + "Request": { + "Method": "GET", + "URL": "https://slatedb.io/slatedb-go?go-get=1", + "Header": { + "Accept-Encoding": [ + "gzip" + ], + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 301, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Age": [ + "0" + ], + "Cache-Control": [ + "max-age=600" + ], + "Content-Length": [ + "162" + ], + "Content-Type": [ + "text/html" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:09 GMT" + ], + "Expires": [ + "Thu, 02 Oct 2025 13:16:08 GMT" + ], + "Location": [ + "https://slatedb.io/slatedb-go/?go-get=1" + ], + "Server": [ + "GitHub.com" + ], + "Vary": [ + "Accept-Encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "MISS" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Fastly-Request-Id": [ + "d9c30a87dc7efeb93f3d0a16bc85011890892af0" + ], + "X-Github-Request-Id": [ + "C2A2:2980E8:B9688:D4807:68DE78C0" + ], + "X-Proxy-Cache": [ + "MISS" + ], + "X-Served-By": [ + "cache-bma-essb1270033-BMA" + ], + "X-Timer": [ + "S1759410369.923072,VS0,VE122" + ] + }, + "Body": "PGh0bWw+DQo8aGVhZD48dGl0bGU+MzAxIE1vdmVkIFBlcm1hbmVudGx5PC90aXRsZT48L2hlYWQ+DQo8Ym9keT4NCjxjZW50ZXI+PGgxPjMwMSBNb3ZlZCBQZXJtYW5lbnRseTwvaDE+PC9jZW50ZXI+DQo8aHI+PGNlbnRlcj5uZ2lueDwvY2VudGVyPg0KPC9ib2R5Pg0KPC9odG1sPg0K" + } + }, + { + "ID": "df56a3913b305326", + "Request": { + "Method": "GET", + "URL": "https://slatedb.io/slatedb-go/?go-get=1", + "Header": { + "Accept-Encoding": [ + "gzip" + ], + "Referer": [ + "https://slatedb.io/slatedb-go?go-get=1" + ], + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Age": [ + "290" + ], + "Cache-Control": [ + "max-age=600" + ], + "Content-Encoding": [ + "gzip" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:09 GMT" + ], + "Etag": [ + "W/\"68c37135-2c1\"" + ], + "Expires": [ + "Thu, 02 Oct 2025 13:10:48 GMT" + ], + "Last-Modified": [ + "Fri, 12 Sep 2025 01:02:45 GMT" + ], + "Server": [ + "GitHub.com" + ], + "Vary": [ + "Accept-Encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "HIT" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Fastly-Request-Id": [ + "7fa5c9da38ebf0181b317f4efd39de272248648e" + ], + "X-Github-Request-Id": [ + "198F:11CC1B:B47F5:CF797:68DE7780" + ], + "X-Proxy-Cache": [ + "MISS" + ], + "X-Served-By": [ + "cache-bma-essb1270033-BMA" + ], + "X-Timer": [ + "S1759410369.047745,VS0,VE2" + ] + }, + "Body": "H4sIAAAAAAAAA41STU/DMAy98ytMOK8W1yntAYbggATiS+I0pa3XBqVJlLgS07T/TrpumoYY28Wx7Of3/BF5OXu6fft8voOWO1PIwYJRtskFWVGAbEnVheyIFVjVUS4aN9Gdd4EFVM4yWc5FNIqpLjPtcOtOGgeN5sTKPk4Rk9/2ZVa5bofYvbCvwMaJ31rR9aGik1pn6JyGIAci7JS2eNDUCmsd1ucQlMaVRwlwtdCG1lePK6MtrdOorNlQ8TpAZzdw76BzdW9I4piQsQraM/DSp2WMOQExVLnAuYocHHrVUPbdvz/Mm3mdfcVEimNVcja3Azn0M1zy+i+lFAXpi4sPZTUvYTwteMUtLFwAbmmPzuCFvIuaXVhOL6SCNtAiF2fs5chiRfFPzQFSokp9oh/Mdh7c/NgfvRS268ECAAA=" + } + }, + { + "ID": "612756348ea2eabc", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/slatedb/slatedb", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "max-age=0, private, must-revalidate" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:09 GMT" + ], + "Etag": [ + "W/\"2b74917d39f60af120511a3cc8e684a2\"" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Set-Cookie": [ + "_gh_sess=gEAb57fztFN%2B0Wy8KjfZLS3XsPbibERKpR0hWUr9nPAeSqVkR355SfpYh7XaKTBSd4%2FdKKaDunDoTGMqHCtcJQlxNIR%2Fcivlp%2FFhBYOVLXONjeKDY0YEF9atTtm6TxHMUazyRbXku1R%2F32DpR4UjJPcXdpx9DtA7cbu8t%2FN9OnfSYGky2Z6msRD8sBlltKXc12xoZ9f1e81KoSk0ui6jnENOcJcKYsd4%2BrQGFH6hFjGTwyeNwbcwuJ%2BPwR1ZZrINlFKcu7ot5%2B8DBRwWd9a7Qw%3D%3D--cWgQjdwJgUVdCpi%2F--8lj2rSTrTLPFtMfyb1C9Aw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax", + "_octo=GH1.1.1646048454.1759410369; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:09 GMT; Secure; SameSite=Lax", + "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:09 GMT; HttpOnly; Secure; SameSite=Lax" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6B9FFE:718E1F:68DE78C1" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "6e9955bf42892cee", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/slatedb/slatedb/tree/slatedb-go/go/v0.8.2/slatedb-go/go", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "max-age=0, private, must-revalidate" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:09 GMT" + ], + "Etag": [ + "W/\"6c0b2b3981e00931b3618979feb8dbd4\"" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Set-Cookie": [ + "_gh_sess=OCHg7fE4YWY2W7UhMx1bGpsRypS%2BqQFlMZyFlObvMADCKell5eizemIx9jbwelK5UQnMqYiGZpbWkrh50B4mfF%2Fp66jQstI6FsC9SH%2FCl1kGHDY0e6nb0VngSG710Py6rLVn4ryO3%2BGl89CQEi38m3baZgO9soitR2320fPN%2B%2FZfSoFUVDv9dC%2BTfdc%2F0KGC8N9TPFvXqQ8oS0KaH0iVeLpgzwdJHQMJ%2BB5YXc4BX3KdOYHpdJAgR%2F9zBmtd62SXqkR8FMnDGOGdJr%2FFB%2FSv6Q%3D%3D--%2FcWtt8OdPFpQHKH%2F--buTeKfks%2Fb6FMaRb%2FcqDwA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax", + "_octo=GH1.1.2136488040.1759410369; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:09 GMT; Secure; SameSite=Lax", + "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:09 GMT; HttpOnly; Secure; SameSite=Lax" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA05A:718E71:68DE78C1" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "63fe9bb6a039cedb", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/slatedb/slatedb/blob/slatedb-go/go/v0.8.2/slatedb-go/go/go.mod", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "max-age=0, private, must-revalidate" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:10 GMT" + ], + "Etag": [ + "W/\"f020e215288519d26bd2c68e776a9601\"" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Set-Cookie": [ + "_gh_sess=Fvb65hYausrkubsow0xFrA8HcNTvTuxAjHO7Hm72xX6f4xTcPvU4%2F1X%2FVVtDLvqzz%2F6IfkRUBgq0kGwWRecxLMxXfR46Fg02Y3FY7xzoaiyke3FKOpGdL%2BxPX8DMY1ovFsrrlPZ%2BfH86rraic1AacuSvRLYQ23XHtCCYDg0r7MPe4FX7jTnf16iFVN7QK%2Fe8I%2F6Ump9v3w8z3Ne6FLjhQlPPE%2Fg7jaEWPyvb%2B5Pw2BTUxi0YSx1QrH%2BHa74ZJjumrJdHaAzGrwkOIhQvNN0Qeg%3D%3D--dXQNTKkHGgsnS481--L9bNzV2mgRgneOh0pCGErg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax", + "_octo=GH1.1.1267588554.1759410369; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:09 GMT; Secure; SameSite=Lax", + "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:09 GMT; HttpOnly; Secure; SameSite=Lax" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA09B:718EA1:68DE78C1" + ], + "X-Raw-Download": [ + "https://raw.githubusercontent.com/slatedb/slatedb/slatedb-go/go/v0.8.2/slatedb-go/go/go.mod" + ], + "X-Repository-Download": [ + "git clone https://github.com/slatedb/slatedb.git" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "43906491aa618270", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/slatedb/slatedb/blob/slatedb-go/go/v0.8.2/slatedb-go/go/go.mod", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "max-age=0, private, must-revalidate" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:10 GMT" + ], + "Etag": [ + "W/\"f020e215288519d26bd2c68e776a9601\"" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Set-Cookie": [ + "_gh_sess=77dbQITVxN5BvZGmPPFaelOzWUWmPlNO37TzTtGg4BcyfUuoExT7PfdzGBPwv86N%2F4qP5Iq75GV4UYMaXpm46KW9WprM9vBIfMohP7OWZzbHaCRNMWrY7QlBmheksCP8gHmhJol%2F%2FJeu6yeLmsyBmNiqdXNuSgL2%2B0OHf3lu%2FVfQooYdm2dqwaK8RW3RzGFSnsouWNWpPcXT1EdvX06r8fbF%2F3UkqCdyNTju3f15hKqucXv0r6rKYN2eAJNYgr9Jvs4r64cKxP1ft05KsRZxPg%3D%3D--iPZin%2F0O8YXnkm9m--V%2BuG5J5ZbR0P0l0KZaF8sA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax", + "_octo=GH1.1.1852603273.1759410370; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:10 GMT; Secure; SameSite=Lax", + "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:10 GMT; HttpOnly; Secure; SameSite=Lax" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA0E9:718EE3:68DE78C2" + ], + "X-Raw-Download": [ + "https://raw.githubusercontent.com/slatedb/slatedb/slatedb-go/go/v0.8.2/slatedb-go/go/go.mod" + ], + "X-Repository-Download": [ + "git clone https://github.com/slatedb/slatedb.git" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "d4157d6fe4899707", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/slatedb/slatedb/raw/slatedb-go/go/v0.8.2/slatedb-go/go/go.mod", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 302, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Access-Control-Allow-Origin": [ + "" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "0" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:10 GMT" + ], + "Location": [ + "https://raw.githubusercontent.com/slatedb/slatedb/slatedb-go/go/v0.8.2/slatedb-go/go/go.mod" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA0EB:718EE7:68DE78C2" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "711177fddca38daf", + "Request": { + "Method": "HEAD", + "URL": "https://raw.githubusercontent.com/slatedb/slatedb/slatedb-go/go/v0.8.2/slatedb-go/go/go.mod", + "Header": { + "Referer": [ + "https://github.com/slatedb/slatedb/raw/slatedb-go/go/v0.8.2/slatedb-go/go/go.mod" + ], + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "max-age=300" + ], + "Content-Length": [ + "639" + ], + "Content-Security-Policy": [ + "default-src 'none'; style-src 'unsafe-inline'; sandbox" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Cross-Origin-Resource-Policy": [ + "cross-origin" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:10 GMT" + ], + "Etag": [ + "\"4b15753d7bbca7c3ebc8ba709f95bfa3e1088800ded5fd10950e03a2550ef47e\"" + ], + "Expires": [ + "Thu, 02 Oct 2025 13:11:10 GMT" + ], + "Source-Age": [ + "170" + ], + "Strict-Transport-Security": [ + "max-age=31536000" + ], + "Vary": [ + "Authorization,Accept-Encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "HIT" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Fastly-Request-Id": [ + "413c08824c06429fa6384df71dfd183375494072" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "742A:219DAB:887F2:1FFDB2:68DE7817" + ], + "X-Served-By": [ + "cache-bma-essb1270043-BMA" + ], + "X-Timer": [ + "S1759410371.682849,VS0,VE1" + ], + "X-Xss-Protection": [ + "1; mode=block" + ] + }, + "Body": "" + } + }, + { + "ID": "15274bbb0c5ab15f", + "Request": { + "Method": "GET", + "URL": "https://edv1n.github.io/go-get-subdirectory-test?go-get=1", + "Header": { + "Accept-Encoding": [ + "gzip" + ], + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 301, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Age": [ + "3349" + ], + "Content-Length": [ + "162" + ], + "Content-Type": [ + "text/html" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:10 GMT" + ], + "Location": [ + "https://edv1n.github.io/go-get-subdirectory-test/?go-get=1" + ], + "Server": [ + "GitHub.com" + ], + "Vary": [ + "Accept-Encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "HIT" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Fastly-Request-Id": [ + "51520d2b0c8b0375be18d83f8340e31bae55fb0d" + ], + "X-Github-Request-Id": [ + "A168:29C660:A7CD0:C1788:68DE6BAD" + ], + "X-Served-By": [ + "cache-bma-essb1270044-BMA" + ], + "X-Timer": [ + "S1759410371.727282,VS0,VE2" + ] + }, + "Body": "PGh0bWw+DQo8aGVhZD48dGl0bGU+MzAxIE1vdmVkIFBlcm1hbmVudGx5PC90aXRsZT48L2hlYWQ+DQo8Ym9keT4NCjxjZW50ZXI+PGgxPjMwMSBNb3ZlZCBQZXJtYW5lbnRseTwvaDE+PC9jZW50ZXI+DQo8aHI+PGNlbnRlcj5uZ2lueDwvY2VudGVyPg0KPC9ib2R5Pg0KPC9odG1sPg0K" + } + }, + { + "ID": "646855aa50d8954a", + "Request": { + "Method": "GET", + "URL": "https://edv1n.github.io/go-get-subdirectory-test/?go-get=1", + "Header": { + "Accept-Encoding": [ + "gzip" + ], + "Referer": [ + "https://edv1n.github.io/go-get-subdirectory-test?go-get=1" + ], + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Age": [ + "320" + ], + "Cache-Control": [ + "max-age=600" + ], + "Content-Length": [ + "141" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:10 GMT" + ], + "Etag": [ + "\"68ddc3ca-8d\"" + ], + "Expires": [ + "Thu, 02 Oct 2025 12:20:22 GMT" + ], + "Last-Modified": [ + "Thu, 02 Oct 2025 00:14:02 GMT" + ], + "Server": [ + "GitHub.com" + ], + "Strict-Transport-Security": [ + "max-age=31556952" + ], + "Vary": [ + "Accept-Encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "HIT" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Fastly-Request-Id": [ + "4dc8bf2bac4dcb3a19fadf7b0ae172672080052e" + ], + "X-Github-Request-Id": [ + "591C:219BE4:A8DF1:C28E4:68DE6BAD" + ], + "X-Proxy-Cache": [ + "MISS" + ], + "X-Served-By": [ + "cache-bma-essb1270044-BMA" + ], + "X-Timer": [ + "S1759410371.731928,VS0,VE1" + ] + }, + "Body": "PGhlYWQ+PG1ldGEgbmFtZT0iZ28taW1wb3J0IiBjb250ZW50PSJlZHYxbi5naXRodWIuaW8vZ28tZ2V0LXN1YmRpcmVjdG9yeS10ZXN0IGdpdCBodHRwczovL2dpdGh1Yi5jb20vZWR2MW4vZ28tZ2V0LXN1YmRpcmVjdG9yeS10ZXN0IGdvcGtnIj4K" + } + }, + { + "ID": "92c073a68447dfc4", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/edv1n/go-get-subdirectory-test", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "max-age=0, private, must-revalidate" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:11 GMT" + ], + "Etag": [ + "W/\"485e055808f39a7cf0d2cf52cdcdf3c2\"" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Set-Cookie": [ + "_gh_sess=EJI4CynMrxvUaPpyTIqZYoW3E6ARlpbtu9QpToJXsr7bQ2461vH6vML24Rdwn0ZLCmm9L20mBAGkBUKl%2Fd3u4WKcfuh0IY7UYmLCtBaoc877vxUP9ws4nZOllxEJU%2FbfidcwZA%2BNQDdpKF%2FFXFOD8%2BXNXcfMaAxGCJ8z3fklI5xz%2Bpr8zJnIQ9glXM30%2BEj6yG0j8UmxcJptv2QeecUIUTueXGGvabew1EfcY6ckmk05idmSh6jAKjhJYQ8lmlZXxYSpChC1QxA3FF%2FcSQPMcQ%3D%3D--6HKqm7sFFLTCIK75--MmfPC4yWcbXPA%2F4PjoD51g%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax", + "_octo=GH1.1.2010172013.1759410370; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:10 GMT; Secure; SameSite=Lax", + "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:10 GMT; HttpOnly; Secure; SameSite=Lax" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA11F:718F0F:68DE78C2" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "31036cb20f3255e9", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/edv1n/go-get-subdirectory-test/tree/gopkg/v0.0.4/gopkg", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "max-age=0, private, must-revalidate" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:11 GMT" + ], + "Etag": [ + "W/\"86f22d1a0330cf672c2c3cbe099606d6\"" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Set-Cookie": [ + "_gh_sess=8uKLdBoJJT%2BA9D%2BUGALEf%2B%2FYao5F%2FLcW5RhT1DzSqFYs5X7gqqbdjroBnyCcMDVqKFxnwjJgnzNiqjR6%2FYVWcGaJc1ccOZlCLn4yEqNrOHsxPgDDr85lqAqxOa9K4J0jRurNPIdbBg551ooNVUHYeOwvoeGpp3ZJyE1DKIsRIvirHPu0Ec2TQrv3WnYGuzDk0T7dZRlwl16iqatb1qsbWCc8hfCJJLq2UP1bvNFO0WBirV3wYqausOv4q5RODYb1ybrwRvtE8DffB4mjI6LVGA%3D%3D--rcsYcUQ5pPZUBKsQ--Uh5HZvvb3UDrw3fVvgEdvQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax", + "_octo=GH1.1.454699012.1759410371; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:11 GMT; Secure; SameSite=Lax", + "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:11 GMT; HttpOnly; Secure; SameSite=Lax" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA1A1:718F91:68DE78C3" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "862d6cd509d9b892", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/edv1n/go-get-subdirectory-test/blob/gopkg/v0.0.4/gopkg/go.mod", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "max-age=0, private, must-revalidate" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:12 GMT" + ], + "Etag": [ + "W/\"88d5c39ded68acbf88af115428d6db3c\"" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Set-Cookie": [ + "_gh_sess=9qQfWCs7%2B47LY1PpVkm5%2FRwhpnsXnTvy79yiE5V3hsQhUv2GTBIz6uITdqGCl3IhsUN37Ls6WwYTYRsZhzWnwOCZdxLA2bGMKplKZxc%2FpP7svKRsLjzwYvdPntfaF5XySbKRWPC%2FZUfRoMeI4MS8ffkK6nN8WzIHdjIfGzzfHE7tUo2LqBiNtKBmT8qdaHBnVrzw%2B%2BwVAFHQ25krdoQadlz%2FORkn6%2Bv7JLT6nhqPC%2FFkFpC2%2BGAL67oq%2BlGyQDKZxf7tOWUl9cNWGpeNIM9nhA%3D%3D--IeU4y68WtY1Dvqpy--W7AsiKvisB4U4Ux4hk9AfQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax", + "_octo=GH1.1.1667567366.1759410371; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:11 GMT; Secure; SameSite=Lax", + "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:11 GMT; HttpOnly; Secure; SameSite=Lax" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA1E4:718FFB:68DE78C3" + ], + "X-Raw-Download": [ + "https://raw.githubusercontent.com/edv1n/go-get-subdirectory-test/gopkg/v0.0.4/gopkg/go.mod" + ], + "X-Repository-Download": [ + "git clone https://github.com/edv1n/go-get-subdirectory-test.git" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "329b624314e4067e", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/edv1n/go-get-subdirectory-test/blob/gopkg/v0.0.4/gopkg/go.mod", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "max-age=0, private, must-revalidate" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:12 GMT" + ], + "Etag": [ + "W/\"88d5c39ded68acbf88af115428d6db3c\"" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Set-Cookie": [ + "_gh_sess=yi%2BQoxldgh9aazgHQpT%2F1ZhiOhp1fTHSUm%2FsBtcC7XB7tTfDXRsUloh%2FLobFmtiUG%2Fz8cHa7IW21%2BP%2FSMQycxRfnMQ1s1A2p9W%2B5wdxxxbR07qpzgGBOGgxRzs9eJWqYAJbjOoVpCe1AVo6MyOCtg2DmCvavTW2uoVFwGLyU8DAcQ5tBmQVBMSewZPg2x0fFQ9N8sfDGR2FpVkpscEoSsI4IIDkwsQc9BwXPJFo4Z%2FViHh1xjIzdvt2VawQAKhCLaskeOmAmXE3dBKyyPC6XFQ%3D%3D--11k0IUZYi3ql1I%2F1--jSXOFzgXOVbLj%2FQsJjlyzQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax", + "_octo=GH1.1.1490585104.1759410372; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:12 GMT; Secure; SameSite=Lax", + "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:12 GMT; HttpOnly; Secure; SameSite=Lax" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA249:719059:68DE78C4" + ], + "X-Raw-Download": [ + "https://raw.githubusercontent.com/edv1n/go-get-subdirectory-test/gopkg/v0.0.4/gopkg/go.mod" + ], + "X-Repository-Download": [ + "git clone https://github.com/edv1n/go-get-subdirectory-test.git" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "62084207f478800b", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/edv1n/go-get-subdirectory-test/raw/gopkg/v0.0.4/gopkg/go.mod", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 302, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Access-Control-Allow-Origin": [ + "" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "0" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:12 GMT" + ], + "Location": [ + "https://raw.githubusercontent.com/edv1n/go-get-subdirectory-test/gopkg/v0.0.4/gopkg/go.mod" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA24D:71905E:68DE78C4" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "afa5b8ab5064aa68", + "Request": { + "Method": "HEAD", + "URL": "https://raw.githubusercontent.com/edv1n/go-get-subdirectory-test/gopkg/v0.0.4/gopkg/go.mod", + "Header": { + "Referer": [ + "https://github.com/edv1n/go-get-subdirectory-test/raw/gopkg/v0.0.4/gopkg/go.mod" + ], + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "max-age=300" + ], + "Content-Length": [ + "48" + ], + "Content-Security-Policy": [ + "default-src 'none'; style-src 'unsafe-inline'; sandbox" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Cross-Origin-Resource-Policy": [ + "cross-origin" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:12 GMT" + ], + "Etag": [ + "\"ccbbe670c0c83ff6e6b9f5950d2d2b0b7068e63c7d8fd792decb78a8c518bc4f\"" + ], + "Expires": [ + "Thu, 02 Oct 2025 13:11:12 GMT" + ], + "Source-Age": [ + "171" + ], + "Strict-Transport-Security": [ + "max-age=31536000" + ], + "Vary": [ + "Authorization,Accept-Encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "HIT" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Fastly-Request-Id": [ + "832c0e949f946f32000e1d5e14db6920e7e12d22" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "5C71:133AFA:893B4:200B17:68DE780F" + ], + "X-Served-By": [ + "cache-bma-essb1270043-BMA" + ], + "X-Timer": [ + "S1759410373.523260,VS0,VE1" + ], + "X-Xss-Protection": [ + "1; mode=block" + ] + }, + "Body": "" + } + }, + { + "ID": "4d5b7e355afd4227", + "Request": { + "Method": "GET", + "URL": "https://edv1n.github.io/go-get-subdirectory-test/sub?go-get=1", + "Header": { + "Accept-Encoding": [ + "gzip" + ], + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 301, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Age": [ + "0" + ], + "Cache-Control": [ + "max-age=600" + ], + "Content-Length": [ + "162" + ], + "Content-Type": [ + "text/html" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:12 GMT" + ], + "Expires": [ + "Thu, 02 Oct 2025 13:16:12 GMT" + ], + "Location": [ + "https://edv1n.github.io/go-get-subdirectory-test/sub/?go-get=1" + ], + "Server": [ + "GitHub.com" + ], + "Strict-Transport-Security": [ + "max-age=31556952" + ], + "Vary": [ + "Accept-Encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "MISS" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Fastly-Request-Id": [ + "49a2835510cf345c59b8104ac9cdcad980f1f6f3" + ], + "X-Github-Request-Id": [ + "4066:3CAF55:B3970:CEB0A:68DE78C4" + ], + "X-Proxy-Cache": [ + "MISS" + ], + "X-Served-By": [ + "cache-bma-essb1270044-BMA" + ], + "X-Timer": [ + "S1759410373.527019,VS0,VE116" + ] + }, + "Body": "PGh0bWw+DQo8aGVhZD48dGl0bGU+MzAxIE1vdmVkIFBlcm1hbmVudGx5PC90aXRsZT48L2hlYWQ+DQo8Ym9keT4NCjxjZW50ZXI+PGgxPjMwMSBNb3ZlZCBQZXJtYW5lbnRseTwvaDE+PC9jZW50ZXI+DQo8aHI+PGNlbnRlcj5uZ2lueDwvY2VudGVyPg0KPC9ib2R5Pg0KPC9odG1sPg0K" + } + }, + { + "ID": "16cb08600449c74d", + "Request": { + "Method": "GET", + "URL": "https://edv1n.github.io/go-get-subdirectory-test/sub/?go-get=1", + "Header": { + "Accept-Encoding": [ + "gzip" + ], + "Referer": [ + "https://edv1n.github.io/go-get-subdirectory-test/sub?go-get=1" + ], + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Age": [ + "321" + ], + "Cache-Control": [ + "max-age=600" + ], + "Content-Length": [ + "149" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:12 GMT" + ], + "Etag": [ + "\"68ddc3ca-95\"" + ], + "Expires": [ + "Thu, 02 Oct 2025 12:20:22 GMT" + ], + "Last-Modified": [ + "Thu, 02 Oct 2025 00:14:02 GMT" + ], + "Server": [ + "GitHub.com" + ], + "Strict-Transport-Security": [ + "max-age=31556952" + ], + "Vary": [ + "Accept-Encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "HIT" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Fastly-Request-Id": [ + "1484dd08f3896e9fff18da26eddecc00ea3d1ee0" + ], + "X-Github-Request-Id": [ + "8115:133927:A9146:C2C85:68DE6BAE" + ], + "X-Proxy-Cache": [ + "MISS" + ], + "X-Served-By": [ + "cache-bma-essb1270044-BMA" + ], + "X-Timer": [ + "S1759410373.646793,VS0,VE1" + ] + }, + "Body": "PGhlYWQ+PG1ldGEgbmFtZT0iZ28taW1wb3J0IiBjb250ZW50PSJlZHYxbi5naXRodWIuaW8vZ28tZ2V0LXN1YmRpcmVjdG9yeS10ZXN0L3N1YiBnaXQgaHR0cHM6Ly9naXRodWIuY29tL2VkdjFuL2dvLWdldC1zdWJkaXJlY3RvcnktdGVzdCBnb3BrZy9zdWIiPgo=" + } + }, + { + "ID": "7e21356e824c499c", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/edv1n/go-get-subdirectory-test", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "max-age=0, private, must-revalidate" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:11 GMT" + ], + "Etag": [ + "W/\"485e055808f39a7cf0d2cf52cdcdf3c2\"" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Set-Cookie": [ + "_gh_sess=NzjM9UmsQ8gfZotunSZAi0R7IFU%2B2gV%2FWU6WNrMNjk%2Fv04nGXs%2BKn1nxiKX0ucCjr3Gw9%2FhLz%2BHMfDFJZot4%2FSknIjmaL3Qsx8OhtmTc%2FS%2BAMJM3v8hOEJI5L3648sEWyoIzT3dadm22cj%2FZXKb8yFXjKqYNNdJ9awLNU4v6sr7H5k4KvbGGaRGswF26TBKSpsYg9ahZ6FVjF1ULVLkBeNdb3Xruits66FrP9sULr7Om1g8zqLNYzdGqvARiEQWkU0bCwnwaz2AQdSozUPJj9g%3D%3D--bCvp7gvt6qfn%2Btwe--40A0S1FMDgVsocdjYVFVVg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax", + "_octo=GH1.1.1298896486.1759410372; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:12 GMT; Secure; SameSite=Lax", + "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:12 GMT; HttpOnly; Secure; SameSite=Lax" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA28A:71908B:68DE78C4" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "4d8476d0e45a6bb8", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/edv1n/go-get-subdirectory-test/tree/gopkg/sub/v0.0.4/gopkg/sub", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "max-age=0, private, must-revalidate" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:12 GMT" + ], + "Etag": [ + "W/\"9ffb7266376cc7d324410f481e758122\"" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Set-Cookie": [ + "_gh_sess=sK01CN%2BVMe3QBpphsiVgcmS9cYRD558HwwO%2BLArF4Bq5qdE%2Be6YanasvpcVULEXd7xaohnpo2753%2FhR6xRuAeYq%2FQG6gnxpBeOznin8fdjMP0%2Bm0ZYZ7e9RFdoxh7dFU%2BJozANaGSuCVXAVZrmLxXLE%2FxWzlm8ZRwx9GA%2BXaP2jzkTgLOn%2BrsJ7zuwd5WBlTL6U%2FRRh6f%2B1x5LBqiwGDqnneGTiMtbnghlizL0Qmr2DkCkZmgMoNj1UQEBhel3RcetGK8Pix4hlqbmtBFaj7AA%3D%3D--ri%2Bv%2BkO2taHRfIfD--LBAf8SVhcB%2Be1UQ6DUkOWQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax", + "_octo=GH1.1.1340676675.1759410372; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:12 GMT; Secure; SameSite=Lax", + "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:12 GMT; HttpOnly; Secure; SameSite=Lax" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA28F:71908F:68DE78C4" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "b9e7ab041d456123", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/edv1n/go-get-subdirectory-test/blob/gopkg/sub/v0.0.4/gopkg/sub/go.mod", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "max-age=0, private, must-revalidate" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:13 GMT" + ], + "Etag": [ + "W/\"e26721e8051a0e4cd06ffd2b46d63828\"" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Set-Cookie": [ + "_gh_sess=X1kws20MYB9JPp2NSVGe5J5aw6VtFHhpFlr%2FNCQoUWRl6oLzK0Rcn5QhD1%2Bf%2BaBGHOn1nB4cYZ3NJOzj6KPmrgX0dz12YgR%2FlHAeyMvekmiURahCeZStxD4Jb8ot9AFwbxbQPVflA5xj9ce%2Fl4TT9kOSg%2FxJbIOT4jYq7XSht4wcjWV1OYS5J9uhrYUQKKMmSZwbJRSvVTRnYcXbPgTO3%2B3y5YFWUo3HXZlUOD45x28x8EoIUGJNdSpKIUYWHPkout3GDl8Rp1AMYTrLpgU%2BoQ%3D%3D--vW5WJORNhMXfh4MF--14qHi6so0qgfhhx%2Fc%2Ba%2BYg%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax", + "_octo=GH1.1.817865233.1759410373; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:13 GMT; Secure; SameSite=Lax", + "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:13 GMT; HttpOnly; Secure; SameSite=Lax" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA2D7:7190DC:68DE78C5" + ], + "X-Raw-Download": [ + "https://raw.githubusercontent.com/edv1n/go-get-subdirectory-test/gopkg/sub/v0.0.4/gopkg/sub/go.mod" + ], + "X-Repository-Download": [ + "git clone https://github.com/edv1n/go-get-subdirectory-test.git" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "9fb1f6aa8a434c98", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/edv1n/go-get-subdirectory-test/blob/gopkg/sub/v0.0.4/gopkg/sub/go.mod", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Cache-Control": [ + "max-age=0, private, must-revalidate" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:13 GMT" + ], + "Etag": [ + "W/\"e26721e8051a0e4cd06ffd2b46d63828\"" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Set-Cookie": [ + "_gh_sess=rMSk8LPqfMsguRm%2F6gPta3Cu4UuL7Jx9cdDpSiYPnAekKCMIifExrivBCbY6u8kXXFafBfPYWuW8VNPymfFBb5x92YidDd%2BW9swQ4wGSBbizMJx6wLB0hbXQbHJEpxQ1Exb8tKyCJCvDgu0eRwxuTuawZuziM3kDVFQ8wqNKRxJ26icEbXNrEtDSaezT7QDCzZYCUsTwMBMi7uQkHZmOi%2FRQCuBXmmtHPLgd8ABL0XLNng2fP6oLHWu52PFGzCcMAPchRLfhA2xOvdx7xpC1Mw%3D%3D--VC%2Bo7C3i5GAWDByZ--%2BPe21EXfm%2FSCP5Pc5CK%2FQA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax", + "_octo=GH1.1.492601634.1759410373; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:13 GMT; Secure; SameSite=Lax", + "logged_in=no; Path=/; Domain=github.com; Expires=Fri, 02 Oct 2026 13:06:13 GMT; HttpOnly; Secure; SameSite=Lax" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA313:71911A:68DE78C5" + ], + "X-Raw-Download": [ + "https://raw.githubusercontent.com/edv1n/go-get-subdirectory-test/gopkg/sub/v0.0.4/gopkg/sub/go.mod" + ], + "X-Repository-Download": [ + "git clone https://github.com/edv1n/go-get-subdirectory-test.git" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "627c079990d47068", + "Request": { + "Method": "HEAD", + "URL": "https://github.com/edv1n/go-get-subdirectory-test/raw/gopkg/sub/v0.0.4/gopkg/sub/go.mod", + "Header": { + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 302, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Access-Control-Allow-Origin": [ + "" + ], + "Cache-Control": [ + "no-cache" + ], + "Content-Length": [ + "0" + ], + "Content-Security-Policy": [ + "default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com github.githubassets.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com marketplace-screenshots.githubusercontent.com/ copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:13 GMT" + ], + "Location": [ + "https://raw.githubusercontent.com/edv1n/go-get-subdirectory-test/gopkg/sub/v0.0.4/gopkg/sub/go.mod" + ], + "Referrer-Policy": [ + "no-referrer-when-downgrade" + ], + "Server": [ + "github.com" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains; preload" + ], + "Vary": [ + "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "A264:2DC4D:6BA318:719121:68DE78C5" + ], + "X-Xss-Protection": [ + "0" + ] + }, + "Body": "" + } + }, + { + "ID": "6b869dfed2195431", + "Request": { + "Method": "HEAD", + "URL": "https://raw.githubusercontent.com/edv1n/go-get-subdirectory-test/gopkg/sub/v0.0.4/gopkg/sub/go.mod", + "Header": { + "Referer": [ + "https://github.com/edv1n/go-get-subdirectory-test/raw/gopkg/sub/v0.0.4/gopkg/sub/go.mod" + ], + "User-Agent": [ + "Go-http-client/1.1" + ] + }, + "MediaType": "", + "BodyParts": [ + "" + ] + }, + "Response": { + "StatusCode": 200, + "Proto": "HTTP/1.1", + "ProtoMajor": 1, + "ProtoMinor": 1, + "Header": { + "Accept-Ranges": [ + "bytes" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Cache-Control": [ + "max-age=300" + ], + "Content-Length": [ + "52" + ], + "Content-Security-Policy": [ + "default-src 'none'; style-src 'unsafe-inline'; sandbox" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Cross-Origin-Resource-Policy": [ + "cross-origin" + ], + "Date": [ + "Thu, 02 Oct 2025 13:06:13 GMT" + ], + "Etag": [ + "\"fa186675827e8f36f08b669354743684875e5c709f2d3c0420475378b37a8dba\"" + ], + "Expires": [ + "Thu, 02 Oct 2025 13:11:13 GMT" + ], + "Source-Age": [ + "170" + ], + "Strict-Transport-Security": [ + "max-age=31536000" + ], + "Vary": [ + "Authorization,Accept-Encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Cache": [ + "HIT" + ], + "X-Cache-Hits": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Fastly-Request-Id": [ + "f5b7263b5df8a7e63a5f8959e2d94a9bad846753" + ], + "X-Frame-Options": [ + "deny" + ], + "X-Github-Request-Id": [ + "5C7E:45966:33424:98533:68DE781A" + ], + "X-Served-By": [ + "cache-bma-essb1270043-BMA" + ], + "X-Timer": [ + "S1759410374.649174,VS0,VE4" + ], + "X-Xss-Protection": [ + "1; mode=block" + ] + }, + "Body": "" + } } ] } \ No newline at end of file