Chromium Code Reviews| Index: server/analytics/doc.go |
| diff --git a/appengine/gaemiddleware/doc.go b/server/analytics/doc.go |
| similarity index 85% |
| copy from appengine/gaemiddleware/doc.go |
| copy to server/analytics/doc.go |
| index a3766ba9afc4cb2df0f879b33886f8df3342f9ae..771aeff551847869dfc8589f3ab0f12b078116c7 100644 |
| --- a/appengine/gaemiddleware/doc.go |
| +++ b/server/analytics/doc.go |
| @@ -1,11 +1,11 @@ |
| -// Copyright 2015 The LUCI Authors. All rights reserved. |
| +// Copyright 2016 The LUCI Authors. All rights reserved. |
| // Use of this source code is governed under the Apache License, Version 2.0 |
| // that can be found in the LICENSE file. |
| -// Package gaemiddleware provides a standard set of middleware tools for luci |
| -// appengine apps. It's built around "github.com/julienschmidt/httprouter". |
| +// Package gaeanalytics provides a standard way to store the Google Analytics |
|
estaab
2016/08/24 16:42:09
name here doesn't match actual package name
|
| +// tracking ID. |
| // |
| -// Usage Example |
| +// Usage Example (TODO): hinoka |
|
estaab
2016/08/24 16:42:09
Is anything blocking you from doing this now? Seem
|
| // |
| // Middleware is pretty basic to use. You pick one of the 'Base' functions, |
| // then layer middlewares, making the innermost middleware your actual handler |
| @@ -45,4 +45,4 @@ |
| // |
| // log.Fatal(http.ListenAndServe(":8080", router)) |
| // } |
| -package gaemiddleware |
| +package analytics |