whatcanGOwrong

This commit is contained in:
2024-09-19 21:38:24 -04:00
commit d0ae4d841d
17908 changed files with 4096831 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
.DEFAULT_GOAL := build
.PHONY: fmt vet build clean
fmt:
go fmt ./...
vet: fmt
go vet ./...
build: vet
go build
clean:
rm -r ./Salaam ./SalaamAlaikum
+7
View File
@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Printf("Salaam Alaikum, %s!\n", "Warahmat ALLAH")
}
+3
View File
@@ -0,0 +1,3 @@
module Salaam
go 1.22.6
+39
View File
@@ -0,0 +1,39 @@
package main
import (
"fmt"
"net/http"
"os"
"time"
)
// Serve the index.html file
func serveHTML(w http.ResponseWriter, r *http.Request) {
// Open the file
file, err := os.Open("index.html")
if err != nil {
http.Error(w, "File not found", http.StatusNotFound)
return
}
defer file.Close()
// Set the content type as HTML and send the file contents
w.Header().Set("Content-Type", "text/html")
http.ServeContent(w, r, "index.html", time.Now(), file)
}
// Serve the current time as plain text
func serveTime(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, time.Now().Format(time.RFC1123))
}
func main() {
// Serve the HTML file on the root URL
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("./static"))))
// Serve the current time on the /time endpoint
http.HandleFunc("/time", serveTime)
// Start the server on port 8085
http.ListenAndServe(":8085", nil)
}
Executable
BIN
View File
Binary file not shown.
+3
View File
@@ -0,0 +1,3 @@
module App
go 1.22.7
+17
View File
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/home/ilyes/LearnGO/firstApp/style.css" />
<title>Dad Jokes</title>
</head>
<body>
<div class="container">
<h3>Don't Laugh Challenge</h3>
<div id="joke" class="joke">// Joke goes here</div>
<button id="jokeBtn" class="btn">Get Another Joke</button>
</div>
<script src="script.js"></script>
</body>
</html>
+37
View File
@@ -0,0 +1,37 @@
const jokeEl = document.getElementById('joke')
const jokeBtn = document.getElementById('jokeBtn')
jokeBtn.addEventListener('click', generateJoke)
generateJoke()
// USING ASYNC/AWAIT
async function generateJoke() {
const config = {
headers: {
Accept: 'application/json',
},
}
const res = await fetch('https://icanhazdadjoke.com', config)
const data = await res.json()
jokeEl.innerHTML = data.joke
}
// USING .then()
// function generateJoke() {
// const config = {
// headers: {
// Accept: 'application/json',
// },
// }
// fetch('https://icanhazdadjoke.com', config)
// .then((res) => res.json())
// .then((data) => {
// jokeEl.innerHTML = data.joke
// })
// }
+62
View File
@@ -0,0 +1,62 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
* {
box-sizing: border-box;
}
body {
background-color: #686de0;
font-family: 'Roboto', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
padding: 20px;
}
.container {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
padding: 50px 20px;
text-align: center;
max-width: 100%;
width: 800px;
}
h3 {
margin: 0;
opacity: 0.5;
letter-spacing: 2px;
}
.joke {
font-size: 30px;
letter-spacing: 1px;
line-height: 40px;
margin: 50px auto;
max-width: 600px;
}
.btn {
background-color: #9f68e0;
color: #fff;
border: 0;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
padding: 14px 40px;
font-size: 16px;
cursor: pointer;
}
.btn:active {
transform: scale(0.98);
}
.btn:focus {
outline: 0;
}
@@ -0,0 +1 @@
v1.2.1
@@ -0,0 +1 @@
{"Version":"v1.2.1","Time":"2022-10-22T08:23:34Z","Origin":{"VCS":"git","URL":"https://github.com/BurntSushi/toml","Hash":"74c008f3d2dcb9c295248aada067301a0d810932","Ref":"refs/tags/v1.2.1"}}
@@ -0,0 +1,3 @@
module github.com/BurntSushi/toml
go 1.16
@@ -0,0 +1 @@
h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak=
@@ -0,0 +1 @@
v1.6.13
@@ -0,0 +1 @@
{"Version":"v1.6.13","Time":"2024-02-16T04:13:23Z","Origin":{"VCS":"git","URL":"https://github.com/TwiN/go-away","Hash":"8bf3f0f93e36f59e1540e14ae5e2c6396ef52368","Ref":"refs/tags/v1.6.13"}}
@@ -0,0 +1,5 @@
module github.com/TwiN/go-away
go 1.20
require golang.org/x/text v0.14.0
@@ -0,0 +1 @@
h1:aB6l/FPXmA5ds+V7I9zdhxzpsLLUvVtEuS++iU/ZmgE=
@@ -0,0 +1 @@
v0.11.0
@@ -0,0 +1 @@
{"Version":"v0.11.0","Time":"2023-07-06T12:08:51Z","Origin":{"VCS":"git","URL":"https://github.com/cilium/ebpf","Hash":"270c859894bd38cdd0c7783317b16343409e4df8","Ref":"refs/tags/v0.11.0"}}
@@ -0,0 +1,16 @@
module github.com/cilium/ebpf
go 1.19
require (
github.com/frankban/quicktest v1.14.5
github.com/google/go-cmp v0.5.9
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2
golang.org/x/sys v0.6.0
)
require (
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
)
Binary file not shown.
@@ -0,0 +1 @@
h1:V8gS/bTCCjX9uUnkUFUpPsksM8n1lXBAvHcpiFk1X2Y=
@@ -0,0 +1 @@
v0.1.0
@@ -0,0 +1 @@
{"Version":"v0.1.0","Time":"2020-04-05T09:22:10Z","Origin":{"VCS":"git","URL":"https://github.com/cosiner/argv","Hash":"0e2b0bed5d2192501434fcddeca7c485a929f513","Ref":"refs/tags/v0.1.0"}}
@@ -0,0 +1,3 @@
module github.com/cosiner/argv
go 1.13
Binary file not shown.
@@ -0,0 +1 @@
h1:BVDiEL32lwHukgJKP87btEPenzrrHUjajs/8yzaqcXg=
@@ -0,0 +1 @@
v2.0.2
@@ -0,0 +1 @@
{"Version":"v2.0.2","Time":"2022-04-22T22:25:44Z","Origin":{"VCS":"git","URL":"https://github.com/cpuguy83/go-md2man","Hash":"d97078115282836e16d0dca10b4b42ce60fc70e6","Ref":"refs/tags/v2.0.2"}}
@@ -0,0 +1,5 @@
module github.com/cpuguy83/go-md2man/v2
go 1.11
require github.com/russross/blackfriday/v2 v2.1.0
@@ -0,0 +1 @@
h1:p1EgwI/C7NhT0JmVkwCD2ZBK8j4aeHQX2pMHHBfMQ6w=
@@ -0,0 +1 @@
v1.1.1
@@ -0,0 +1 @@
{"Version":"v1.1.1","Time":"2018-02-21T23:26:28Z","Origin":{"VCS":"git","URL":"https://github.com/davecgh/go-spew","Hash":"8991bc29aa16c548c550c7ff78260e27b9ab7c73","Ref":"refs/tags/v1.1.1"}}
@@ -0,0 +1 @@
module github.com/davecgh/go-spew
@@ -0,0 +1 @@
h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
@@ -0,0 +1 @@
v0.0.0-20230829180723-39f4de51ef7d
@@ -0,0 +1 @@
{"Version":"v0.0.0-20230829180723-39f4de51ef7d","Time":"2023-08-29T18:07:23Z","Origin":{"VCS":"git","URL":"https://github.com/derekparker/trie","Hash":"39f4de51ef7dea483903cfdf32b5a66ec1fd6bd5"}}
@@ -0,0 +1,3 @@
module github.com/derekparker/trie
go 1.19
@@ -0,0 +1 @@
h1:hUWoLdw5kvo2xCsqlsIBMvWUc1QCSsCYD2J2+Fg6YoU=
@@ -0,0 +1 @@
v1.23.0
@@ -0,0 +1 @@
{"Version":"v1.23.0","Time":"2024-07-16T18:44:48Z","Origin":{"VCS":"git","URL":"https://github.com/go-delve/delve","Hash":"56e9b85f40ccd5ea92186ac54dba79a2f55d2197","Ref":"refs/tags/v1.23.0"}}
@@ -0,0 +1,34 @@
module github.com/go-delve/delve
go 1.21
require (
github.com/cilium/ebpf v0.11.0
github.com/cosiner/argv v0.1.0
github.com/creack/pty v1.1.20
github.com/derekparker/trie v0.0.0-20230829180723-39f4de51ef7d
github.com/go-delve/liner v1.2.3-0.20231231155935-4726ab1d7f62
github.com/google/go-dap v0.12.0
github.com/hashicorp/golang-lru v1.0.2
github.com/mattn/go-colorable v0.1.13
github.com/mattn/go-isatty v0.0.20
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.7.0
github.com/spf13/pflag v1.0.5
go.starlark.net v0.0.0-20231101134539-556fd59b42f6
golang.org/x/arch v0.6.0
golang.org/x/sys v0.17.0
golang.org/x/tools v0.14.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/stretchr/testify v1.8.4 // indirect
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 // indirect
golang.org/x/mod v0.14.0 // indirect
)
@@ -0,0 +1 @@
h1:jYgZISZ14KAO3ys8kD07kjrowrygE9F9SIwnpz9xXys=
@@ -0,0 +1 @@
v1.2.3-0.20231231155935-4726ab1d7f62
@@ -0,0 +1 @@
{"Version":"v1.2.3-0.20231231155935-4726ab1d7f62","Time":"2023-12-31T15:59:35Z","Origin":{"VCS":"git","URL":"https://github.com/go-delve/liner","Hash":"4726ab1d7f62f429ffd1bf4d2ad1e655dd12ced4"}}
@@ -0,0 +1,6 @@
module github.com/go-delve/liner
require (
github.com/mattn/go-runewidth v0.0.3
golang.org/x/sys v0.0.0-20211117180635-dee7805ff2e1
)
@@ -0,0 +1 @@
h1:IGtvsNyIuRjl04XAOFGACozgUD7A82UffYxZt4DWbvA=
@@ -0,0 +1 @@
v4.17.1
@@ -0,0 +1 @@
{"Version":"v4.17.1","Time":"2024-04-17T06:16:25Z","Origin":{"VCS":"git","URL":"https://github.com/golang-migrate/migrate","Hash":"0c456c49a6debb0b2deb5a97a10d9e85d157b9d5","Ref":"refs/tags/v4.17.1"}}
@@ -0,0 +1,194 @@
module github.com/golang-migrate/migrate/v4
go 1.18
require (
cloud.google.com/go/spanner v1.51.0
cloud.google.com/go/storage v1.30.1
github.com/Azure/go-autorest/autorest/adal v0.9.16
github.com/ClickHouse/clickhouse-go v1.4.3
github.com/aws/aws-sdk-go v1.49.6
github.com/cenkalti/backoff/v4 v4.1.2
github.com/cockroachdb/cockroach-go/v2 v2.1.1
github.com/dhui/dktest v0.4.1
github.com/docker/docker v24.0.9+incompatible
github.com/docker/go-connections v0.4.0
github.com/fsouza/fake-gcs-server v1.17.0
github.com/go-sql-driver/mysql v1.5.0
github.com/gobuffalo/here v0.6.0
github.com/gocql/gocql v0.0.0-20210515062232-b7ef815b4556
github.com/google/go-github/v39 v39.2.0
github.com/hashicorp/go-multierror v1.1.1
github.com/jackc/pgconn v1.14.3
github.com/jackc/pgerrcode v0.0.0-20220416144525-469b46aa5efa
github.com/jackc/pgx/v4 v4.18.2
github.com/jackc/pgx/v5 v5.5.4
github.com/ktrysmt/go-bitbucket v0.6.4
github.com/lib/pq v1.10.9
github.com/markbates/pkger v0.15.1
github.com/mattn/go-sqlite3 v1.14.16
github.com/microsoft/go-mssqldb v1.0.0
github.com/mutecomm/go-sqlcipher/v4 v4.4.0
github.com/nakagami/firebirdsql v0.0.0-20190310045651-3c02a58cfed8
github.com/neo4j/neo4j-go-driver v1.8.1-0.20200803113522-b626aa943eba
github.com/snowflakedb/gosnowflake v1.6.19
github.com/stretchr/testify v1.8.3
github.com/xanzy/go-gitlab v0.15.0
go.mongodb.org/mongo-driver v1.7.5
go.uber.org/atomic v1.7.0
golang.org/x/oauth2 v0.14.0
golang.org/x/tools v0.10.0
google.golang.org/api v0.150.0
modernc.org/ql v1.0.0
modernc.org/sqlite v1.18.1
)
require github.com/jackc/puddle/v2 v2.2.1 // indirect
require (
cloud.google.com/go v0.110.10 // indirect
cloud.google.com/go/compute v1.23.3 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
cloud.google.com/go/iam v1.1.5 // indirect
cloud.google.com/go/longrunning v0.5.4 // indirect
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
github.com/99designs/keyring v1.2.1 // indirect
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.4.0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/internal v1.1.2 // indirect
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.0.0 // indirect
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
github.com/Azure/go-autorest/logger v0.2.1 // indirect
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/apache/arrow/go/v10 v10.0.1 // indirect
github.com/apache/thrift v0.16.0 // indirect
github.com/aws/aws-sdk-go-v2 v1.16.16 // indirect
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.8 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.12.20 // indirect
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.33 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.23 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.17 // indirect
github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.14 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.9 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.18 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.17 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.13.17 // indirect
github.com/aws/aws-sdk-go-v2/service/s3 v1.27.11 // indirect
github.com/aws/smithy-go v1.13.3 // indirect
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cloudflare/golz4 v0.0.0-20150217214814-ef862a3cdc58 // indirect
github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect
github.com/cncf/xds/go v0.0.0-20231109132714-523115ebc101 // indirect
github.com/cznic/mathutil v0.0.0-20180504122225-ca4c9f2c1369 // indirect
github.com/danieljoos/wincred v1.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/docker/distribution v2.8.2+incompatible // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/dvsekhvalnov/jose2go v1.6.0 // indirect
github.com/edsrzf/mmap-go v0.0.0-20170320065105-0bce6a688712 // indirect
github.com/envoyproxy/go-control-plane v0.11.1 // indirect
github.com/envoyproxy/protoc-gen-validate v1.0.2 // indirect
github.com/form3tech-oss/jwt-go v3.2.5+incompatible // indirect
github.com/gabriel-vasile/mimetype v1.4.1 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/goccy/go-json v0.9.11 // indirect
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect
github.com/golang-sql/sqlexp v0.1.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/flatbuffers v2.0.8+incompatible // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/google/uuid v1.4.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
github.com/gorilla/handlers v1.4.2 // indirect
github.com/gorilla/mux v1.7.4 // indirect
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.3 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgtype v1.14.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/k0kubun/pp v2.3.0+incompatible // indirect
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/klauspost/asmfmt v1.3.2 // indirect
github.com/klauspost/compress v1.15.11 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect
github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/moby/term v0.5.0 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/mtibben/percent v0.2.1 // indirect
github.com/onsi/ginkgo v1.16.4 // indirect
github.com/onsi/gomega v1.15.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/pierrec/lz4/v4 v4.1.16 // indirect
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect
github.com/pkg/errors v0.9.1
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/rqlite/gorqlite v0.0.0-20230708021416-2acd02b70b79
github.com/shopspring/decimal v1.2.0 // indirect
github.com/sirupsen/logrus v1.9.2 // indirect
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
github.com/xdg-go/scram v1.1.1 // indirect
github.com/xdg-go/stringprep v1.0.3 // indirect
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
gitlab.com/nyarla/go-crypt v0.0.0-20160106005555-d9a5dc2b789b // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/crypto v0.20.0 // indirect
golang.org/x/exp v0.0.0-20230315142452-642cacee5cc0 // indirect
golang.org/x/mod v0.11.0 // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/sync v0.5.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/term v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 // indirect
google.golang.org/grpc v1.59.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
lukechampine.com/uint128 v1.2.0 // indirect
modernc.org/b v1.0.0 // indirect
modernc.org/cc/v3 v3.36.3 // indirect
modernc.org/ccgo/v3 v3.16.9 // indirect
modernc.org/db v1.0.0 // indirect
modernc.org/file v1.0.0 // indirect
modernc.org/fileutil v1.0.0 // indirect
modernc.org/golex v1.0.0 // indirect
modernc.org/internal v1.0.0 // indirect
modernc.org/libc v1.17.1 // indirect
modernc.org/lldb v1.0.0 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.2.1 // indirect
modernc.org/opt v0.1.3 // indirect
modernc.org/sortutil v1.1.0 // indirect
modernc.org/strutil v1.1.3 // indirect
modernc.org/token v1.0.0 // indirect
modernc.org/zappy v1.0.0 // indirect
)
@@ -0,0 +1 @@
h1:4zQ6iqL6t6AiItphxJctQb3cFqWiSpMnX7wLTPnnYO4=
@@ -0,0 +1 @@
v0.6.0
@@ -0,0 +1 @@
{"Version":"v0.6.0","Time":"2023-08-31T17:32:40Z","Origin":{"VCS":"git","URL":"https://github.com/google/go-cmp","Hash":"c3ad8435e7bef96af35732bc0789e5a2278c6d5f","Ref":"refs/tags/v0.6.0"}}
@@ -0,0 +1,3 @@
module github.com/google/go-cmp
go 1.13
Binary file not shown.
@@ -0,0 +1 @@
h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
@@ -0,0 +1 @@
v0.12.0
@@ -0,0 +1 @@
{"Version":"v0.12.0","Time":"2024-02-22T16:17:01Z","Origin":{"VCS":"git","URL":"https://github.com/google/go-dap","Hash":"69ae96dd1be582d05210c92e880b3d63a37b2cf7","Ref":"refs/tags/v0.12.0"}}
@@ -0,0 +1,5 @@
module github.com/google/go-dap
go 1.18
retract v0.9.0
Binary file not shown.
@@ -0,0 +1 @@
h1:rVcjv3SyMIrpaOoTAdFDyHs99CwVOItIJGKLQFQhNeM=
@@ -0,0 +1 @@
v1.6.0
@@ -0,0 +1 @@
{"Version":"v1.6.0","Time":"2024-01-23T18:54:04Z","Origin":{"VCS":"git","URL":"https://github.com/google/uuid","Hash":"0f11ee6918f41a04c201eceeadf612a377bc7fbc","Ref":"refs/tags/v1.6.0"}}
@@ -0,0 +1 @@
module github.com/google/uuid
Binary file not shown.
@@ -0,0 +1 @@
h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
@@ -0,0 +1 @@
v1.4.1
@@ -0,0 +1,3 @@
module github.com/gorilla/websocket
go 1.12
@@ -0,0 +1 @@
v1.1.0
@@ -0,0 +1 @@
{"Version":"v1.1.0","Time":"2020-07-14T15:51:01Z","Origin":{"VCS":"git","URL":"https://github.com/hashicorp/errwrap","Hash":"7b00e5db719c64d14dd0caaacbd13e76254d02c0","Ref":"refs/tags/v1.1.0"}}
@@ -0,0 +1 @@
module github.com/hashicorp/errwrap
@@ -0,0 +1 @@
h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
@@ -0,0 +1 @@
v1.1.1
@@ -0,0 +1 @@
{"Version":"v1.1.1","Time":"2021-03-11T20:17:12Z","Origin":{"VCS":"git","URL":"https://github.com/hashicorp/go-multierror","Hash":"9974e9ec57696378079ecc3accd3d6f29401b3a0","Ref":"refs/tags/v1.1.1"}}
@@ -0,0 +1,5 @@
module github.com/hashicorp/go-multierror
go 1.13
require github.com/hashicorp/errwrap v1.0.0

Some files were not shown because too many files have changed in this diff Show More