Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The LUCI Authors. All rights reserved. | |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 | |
| 3 // that can be found in the LICENSE file. | |
| 4 | |
| 5 syntax = "proto3"; | |
| 6 | |
| 7 package internal; | |
| 8 | |
| 9 import "github.com/luci/luci-go/common/proto/milo/annotations.proto"; | |
| 10 | |
| 11 // Item is a full annotation protobuf state item. It is used to serialize and | |
| 12 // deserialize Step and associated fetch data into memcache. | |
| 13 // | |
|
nodir
2016/07/29 23:00:32
nit: remove
dnj
2016/07/29 23:24:43
Done.
| |
| 14 message Item { | |
| 15 // Step is the root annotation step. | |
| 16 milo.Step step = 1; | |
| 17 | |
| 18 // Finished is true if this is the last annotation protobuf in the stream. | |
| 19 bool finished = 2; | |
| 20 } | |
| OLD | NEW |