Good Day! I've read "How to import local files" thread before posting this but mine does not work and I cannot solve it on my own
- Example
---- handlers
--------- test.go
---- main.go
package handlers
import "fmt"
func message() {
fmt.Println("Hello World")
}
package main
import (
"Example/handlers"
)
func main() {
handlers.message()
}