summaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/golang.org/x/text/cmd/gotext/examples/extract_http/main.go')
-rw-r--r--vendor/golang.org/x/text/cmd/gotext/examples/extract_http/main.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/main.go b/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/main.go
deleted file mode 100644
index c1ac449..0000000
--- a/vendor/golang.org/x/text/cmd/gotext/examples/extract_http/main.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-//go:generate gotext extract --lang=de,zh
-
-import (
- "net/http"
-
- "golang.org/x/text/cmd/gotext/examples/extract_http/pkg"
-)
-
-func main() {
- http.Handle("/generize", http.HandlerFunc(pkg.Generize))
-}