Shall we Go ตอนที่ 4 – โครงสร้าง file และ directory ของ Go project

ตอนนี้มาปูพื้นฐานความเข้าใจโครงสร้าง file และ directory ของ Go project กัน โจทย์ตัวอย่างเราจะมี Main Program 1 ตัว และมี Library อีก 1 ตัว สามารถ download source code ได้ที่: https://github.com/shall-we-go/stringutil https://github.com/shall-we-go/reverse-hello-world โครงสร้าง file และ directory $GOPATH/ src/ github.com/ shall-we-go/ stringutil/ .git/ reverse.go reverse_test.go reverse-hello-world/ .git/ main.go ข้อสังเกตุ โครงสร้าง และ directory จะสัมพันธ์กับ URL ของ Git repo จากตัวอย่างเราจะมี repo อยู่ที่ https://github.com/shall-we-go/stringutil และ https://github.com/shall-we-go/reverse-hello-world…