From 38e462db8db3741cdc34c464ececac44b550e1c6 Mon Sep 17 00:00:00 2001 From: colin axner <25233464+colin-axner@users.noreply.github.com> Date: Wed, 24 Jun 2020 10:39:41 +0200 Subject: [PATCH] remove alias.go from docs (#6498) --- docs/building-modules/structure.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/building-modules/structure.md b/docs/building-modules/structure.md index 2745caff06..b07a51eb84 100644 --- a/docs/building-modules/structure.md +++ b/docs/building-modules/structure.md @@ -46,7 +46,6 @@ x/{module} │   ├── params.go │   └── proposals.go ├── abci.go -├── alias.go ├── genesis.go ├── handler.go ├── ... @@ -54,11 +53,6 @@ x/{module} ``` - `abci.go`: The module's `BeginBlocker` and `EndBlocker` implementations (if any). -- `alias.go`: The module's exported types, constants, and variables. These are mainly -to improve developer ergonomics by only needing to import a single package. Note, -there is nothing preventing developers from importing other packages from the module -but it is recommended that `alias.go` have everything exposed that other modules -may need. - `client/`: The module's CLI and REST client functionality implementation and testing. - `exported/`: The module's exported types -- typically type interfaces. If a module