| commit | 1a5e218e545549299aaf35cae608b33838e220d7 | [log] [tgz] |
|---|---|---|
| author | Ian Lance Taylor <iant@golang.org> | Tue Sep 24 11:17:12 2024 -0700 |
| committer | Gopher Robot <gobot@golang.org> | Wed Sep 25 20:16:53 2024 +0000 |
| tree | 53a09173425599b46f47ad3bd3244eaee386e84b | |
| parent | f3623ff43ac28483711860daca3000d84336024a [diff] |
ragserver-langchaingo: update to newer version of grpc
I ran
go get go get google.golang.org/grpc
go mod tidy
This turns off a GitHub Dependabot alert.
Version 1.64.0 is reported to have a minor vulnerability.
Change-Id: I0b7d05edc9001cf85bd5e7d9dc4bc534261f355a
Reviewed-on: https://go-review.googlesource.com/c/example/+/615555
Reviewed-by: Eli Bendersky <eliben@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Commit-Queue: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
This repository contains a collection of Go programs and libraries that demonstrate the language, standard libraries, and tools.
$ git clone https://go.googlesource.com/example $ cd example
https://go.googlesource.com/example is the canonical Git repository. It is mirrored at https://github.com/golang/example.
$ cd hello $ go build $ ./hello -help
A trivial “Hello, world” program that uses a library package.
The hello command covers:
The reverse reverse covers:
$ cd helloserver $ go run .
A trivial “Hello, world” web server.
Topics covered:
$ cd outyet $ go run .
A web server that answers the question: “Is Go 1.x out yet?”
Topics covered:
A trivial “Hello, world” App Engine application intended to be used as the starting point for your own code. Please see Google App Engine SDK for Go and Quickstart for Go in the App Engine Standard Environment.
The go/types package is a type-checker for Go programs. It is one of the most complex packages in Go's standard library, so we have provided this tutorial to help you find your bearings. It comes with several example programs that you can obtain using go get and play with as you learn to build tools that analyze or manipulate Go programs.
A trivial web server that demonstrates the use of the template package's block feature.
The log/slog package supports structured logging. It features a flexible backend in the form of a Handler interface. This guide can help you write your own handler.