11 lines
295 B
Go
11 lines
295 B
Go
|
/*
|
||
|
Package baseapp contains data structures that provide basic data storage
|
||
|
functionality and act as a bridge between the ABCI interface and the SDK
|
||
|
abstractions.
|
||
|
|
||
|
BaseApp has no state except the CommitMultiStore you provide upon init.
|
||
|
|
||
|
See examples/basecoin/app/* for usage.
|
||
|
*/
|
||
|
package baseapp
|