mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-07-27 23:59:57 +00:00
13 lines
248 B
Cap'n Proto
13 lines
248 B
Cap'n Proto
using Go = import "/go.capnp";
|
|
@0x85d3acc39d94e0f8;
|
|
$Go.package("books");
|
|
$Go.import("zombiezen.com/go/capnproto2/internal/demo/books");
|
|
|
|
struct Book {
|
|
title @0 :Text;
|
|
# Title of the book.
|
|
|
|
pageCount @1 :Int32;
|
|
# Number of pages in the book.
|
|
}
|