This commit is contained in:
2021-12-24 18:50:43 +08:00
parent 78d6d1df37
commit 60487a0aab
9 changed files with 53 additions and 1 deletions
@@ -0,0 +1,5 @@
package main
func main() {
}
@@ -0,0 +1,7 @@
package user2
import "fmt"
func CreateUser() {
fmt.Println("create user")
}
@@ -0,0 +1,7 @@
package user
import "fmt"
func GetUser() {
fmt.Println("get user")
}