Left: | ||
Right: |
LEFT | RIGHT |
---|---|
(no file at all) | |
1 // Copyright 2011 The Go Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style | |
3 // license that can be found in the LICENSE file. | |
4 | |
5 // This file contains configuration information used by | |
6 // godoc when running on app engine. Adjust as needed | |
7 // (typically when the .zip file changes). | |
8 | |
9 package main | |
10 | |
11 const ( | |
12 // zipFilename is the name of the .zip file | |
13 // containing the file system served by godoc. | |
14 zipFilename = "go.zip" | |
15 | |
16 // zipGoroot is the path of the goroot directory | |
17 // in the .zip file. | |
18 zipGoroot = "/home/username/go" | |
19 ) | |
LEFT | RIGHT |