Sign in
cue
/
cue
/
362e3a575ea31b8f650a686bcf181385345d6c17
/
.
/
encoding
/
protobuf
/
jsonpb
/
testdata
/
encoder
/
struct.txtar
blob: 4aa6d4ba1dc2123c4b5307f49f6226ba0798c5d7 [
file
] [
log
] [
blame
]
--
schema
.
cue
--
a
:
{
{
b
:
int
@protobuf
(
1
,
int64
)}
c
:
int
@protobuf
(
1
,
int64
)
{
d
:
int
@protobuf
(
1
,
int32
)}
e
:
int
@protobuf
(
1
,
int32
)
}
--
value
.
cue
--
// Hello
a
:
{
b
:
1
c
:
2
d
:
3
e
:
4
}
--
out
/
jsonpb
--
// Hello
a
:
{
b
:
"1"
c
:
"2"
d
:
3
e
:
4
}