Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: pkg/appengine/lib/src/protobuf_api/internal/api_base.proto

Issue 804973002: Add appengine/gcloud/mustache dependencies. (Closed) Base URL: git@github.com:dart-lang/pub-dartlang-dart.git@master
Patch Set: Added AUTHORS/LICENSE/PATENTS files Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Built-in base types for API calls. Primarily useful as return types.
2
3 syntax = "proto2";
4
5 package appengine.base;
6
7 message StringProto {
8 required string value = 1;
9 }
10
11 message Integer32Proto {
12 required int32 value = 1;
13 }
14
15 message Integer64Proto {
16 required int64 value = 1;
17 }
18
19 message BoolProto {
20 required bool value = 1;
21 }
22
23 message DoubleProto {
24 required double value = 1;
25 }
26
27 message BytesProto {
28 required bytes value = 1 [ctype=CORD];
29 }
30
31 message VoidProto {
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698