You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by GitBox <gi...@apache.org> on 2020/11/09 09:32:32 UTC

[GitHub] [apisix-dashboard] tokers edited a comment on issue #731: [style] adjust directory structure of api to golang standard style

tokers edited a comment on issue #731:
URL: https://github.com/apache/apisix-dashboard/issues/731#issuecomment-723888883


   A popular go project layout is like:
   
   ```
   .
   ├── build-tools
   ├── cmd
   │   └── manager-api
   ├── conf # default config path
   ├── logs
   ├── output
   │   ├── conf
   │   └── dag-to-lua
   ├── pkg
   │   ├── config
   │   ├── entity
   │   ├── filter
   │   ├── handler
   │   │   ├── authentication
   │   │   ├── consumer
   │   │   ├── healthz
   │   │   ├── plugin
   │   │   ├── route
   │   │   ├── service
   │   │   ├── ssl
   │   │   └── upstream
   │   ├── log
   │   ├── storage
   │   ├── store
   │   └── utils
   │       └── consts
   └── test
       ├── docker
       ├── e2e
       └── shell
   
   ```
   
   Note this is only a demonstration not the ultimate one.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org