I want to break my project up to subfolders.
I want this code structure:
├── main.go └── models └── user.go
Where main.go is:>
You need to qualify items in in a package by its package name
So
fmt.Println(models.User{"new_user"})