From 69ba71c28da603721a5a8c607d83843039da2353 Mon Sep 17 00:00:00 2001 From: Aleksandr Bezobchuk Date: Thu, 5 Mar 2020 09:44:11 -0500 Subject: [PATCH] Add pkg doc --- codec/std/doc.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 codec/std/doc.go diff --git a/codec/std/doc.go b/codec/std/doc.go new file mode 100644 index 0000000000..9b57bd5916 --- /dev/null +++ b/codec/std/doc.go @@ -0,0 +1,10 @@ +/* +Package std defines all the common and standard Cosmos SDK Protocol Buffer +message definitions and type implementations. The std package defines and exposes +a single concrete Codec type that implements all the necessary module codec +interfaces along with all the types necessary to use those modules. + +Applications can choose to either use the codec directly or even extend it without +having the need to redefine all the message and type implementations. +*/ +package std