mirror of
https://github.com/SourceFellows/gobuch.git
synced 2025-08-04 05:32:17 +02:00
initial import
This commit is contained in:
@ -0,0 +1,7 @@
|
||||
package f
|
||||
|
||||
import "fmt"
|
||||
|
||||
func Access() {
|
||||
fmt.Println("Access it!")
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package c
|
||||
|
||||
import "golang.source-fellows.com/project/isample/a/b/c/internal/d/e/f"
|
||||
|
||||
func Run() {
|
||||
f.Access()
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package g
|
||||
|
||||
import "fmt"
|
||||
|
||||
func Help() {
|
||||
fmt.Println("Help me! cannot access")
|
||||
}
|
3
best-practices/project-structure/internal-sample/go.mod
Normal file
3
best-practices/project-structure/internal-sample/go.mod
Normal file
@ -0,0 +1,3 @@
|
||||
module golang.source-fellows.com/project/isample
|
||||
|
||||
go 1.14
|
Reference in New Issue
Block a user