commit | 7137c6b752c6c86b576aebe442a82f28698f916f | [log] [tgz] |
---|---|---|
author | Jonathan Amsterdam <jba@google.com> | Fri Jul 14 16:52:32 2023 -0400 |
committer | Jonathan Amsterdam <jba@google.com> | Tue Jul 25 23:35:29 2023 +0000 |
tree | 4b737164227396a3c542df7f1e5e89622d684427 | |
parent | 72e55f1f1d3a45c74af107258f35ade8f91d736f [diff] |
slog-handler-guide: handler example: types Begin discussing a running example of a slog.Handler implementation. Initially we'll ignore the WithAttrs and WithGroup methods. The implementation that does that is in indenthandler1. This CL contains the complete implementation, but discusses only the types and constructor function. Change-Id: I3b635aee66a6d5df64bc13ce6bfb7ae4881606fe Reviewed-on: https://go-review.googlesource.com/c/example/+/509955 Reviewed-by: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Jonathan Amsterdam <jba@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
A trivial “Hello, world” program that uses a stringutil package.
Command hello covers:
Library stringutil covers:
$ cd outyet $ go build
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.