cloudflare / hellogopher

Hellogopher: "just clone and make" your conventional Go project
MIT License
1.15k stars 59 forks source link

Only github and one package for IMPORT_PATH? #19

Open huangdijia opened 7 years ago

huangdijia commented 7 years ago

Only github and one package for IMPORT_PATH?

ghost commented 7 years ago

It's the import path for your project, so it doesn't have to be GitHub - it can be anything.

for instance:

go
---- src
-------- github.com
-------- wjh.sh
------------ code
---------------- someproject
-------------------- Makefile

If the above was my directory structure, the IMPORT_PATH would be wjh.sh/code/someproject.