Index: go/src/infra/tools/cipd/internal/messages/generate.go |
diff --git a/go/src/infra/gae/epservice/epservice_other.go b/go/src/infra/tools/cipd/internal/messages/generate.go |
similarity index 59% |
copy from go/src/infra/gae/epservice/epservice_other.go |
copy to go/src/infra/tools/cipd/internal/messages/generate.go |
index a60db74ffa5bb27818a69bd61bd4774c90b8b33a..cc35e1548f4b857d57f7c1200c22bcc3c7cfbaf5 100644 |
--- a/go/src/infra/gae/epservice/epservice_other.go |
+++ b/go/src/infra/tools/cipd/internal/messages/generate.go |
@@ -2,12 +2,12 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-// +build !windows |
+//go:generate protoc --go_out=. messages.proto |
-package main |
+package messages |
import ( |
- "syscall" |
+ "github.com/golang/protobuf/proto" |
) |
-var serverStartParams = &syscall.SysProcAttr{Setpgid: true} |
+var _ = proto.Marshal |