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 01:27:54 UTC

[GitHub] [apisix-dashboard] gxthrj opened a new issue #731: [style] adjust directory structure of api to golang standard style

gxthrj opened a new issue #731:
URL: https://github.com/apache/apisix-dashboard/issues/731


   ref to #715 


----------------------------------------------------------------
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



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

Posted by GitBox <gi...@apache.org>.
tokers commented on issue #731:
URL: https://github.com/apache/apisix-dashboard/issues/731#issuecomment-723975120


   Also, we can obey the [uber-go](https://github.com/uber-go/guide) style guide.


----------------------------------------------------------------
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



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

Posted by GitBox <gi...@apache.org>.
juzhiyuan edited a comment on issue #731:
URL: https://github.com/apache/apisix-dashboard/issues/731#issuecomment-723800573


   2.1 is ok for me, but not sure if it's a big project to reactor api's directory at that time 🤔


----------------------------------------------------------------
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



[GitHub] [apisix-dashboard] juzhiyuan commented on issue #731: [style] adjust directory structure of api to golang standard style

Posted by GitBox <gi...@apache.org>.
juzhiyuan commented on issue #731:
URL: https://github.com/apache/apisix-dashboard/issues/731#issuecomment-723942461


   related resources: https://github.com/golang-standards/project-layout


----------------------------------------------------------------
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



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

Posted by GitBox <gi...@apache.org>.
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



[GitHub] [apisix-dashboard] membphis commented on issue #731: [style] adjust directory structure of api to golang standard style

Posted by GitBox <gi...@apache.org>.
membphis commented on issue #731:
URL: https://github.com/apache/apisix-dashboard/issues/731#issuecomment-723765128


   @gxthrj please set right lable


----------------------------------------------------------------
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



[GitHub] [apisix-dashboard] nic-chen closed issue #731: [style] adjust directory structure of api to golang standard style

Posted by GitBox <gi...@apache.org>.
nic-chen closed issue #731:
URL: https://github.com/apache/apisix-dashboard/issues/731


   


----------------------------------------------------------------
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



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

Posted by GitBox <gi...@apache.org>.
tokers commented 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
   ├── 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



[GitHub] [apisix-dashboard] juzhiyuan commented on issue #731: [style] adjust directory structure of api to golang standard style

Posted by GitBox <gi...@apache.org>.
juzhiyuan commented on issue #731:
URL: https://github.com/apache/apisix-dashboard/issues/731#issuecomment-723800573


   2.1 is ok for me, but not sure if it's a big project to reactor api's directory 🤔


----------------------------------------------------------------
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



[GitHub] [apisix-dashboard] membphis commented on issue #731: [style] adjust directory structure of api to golang standard style

Posted by GitBox <gi...@apache.org>.
membphis commented on issue #731:
URL: https://github.com/apache/apisix-dashboard/issues/731#issuecomment-723765571


   please check the other issues you have created: label and milestone


----------------------------------------------------------------
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