package concurrency
import (
"fmt"
)
func Say(s string) {
fmt.Print(s)
}
記得export 的 function 第一個字要大寫
2. 新增 要 import的檔案
package main;
import (
concurrency "./concurrency"
)
func main() {
concurrency.Say("hello");
}
使用 go mod 的話 import 只要放入 go mod 名稱在前面即可
package routes
import (
controllers "test-backend/controllers"
)
func CatchphrasesRoute(route fiber.Router) {
route.Get("/", controllers.GetAllCatchphrases)
}