Hi guys,
I am trying to run a golang API. When I "go run main.go", I get the output attached stating that package {name} is not in std as many third party packages are needed.
I have tried to look for answers in stackoverflow and even reddit or chatgpt but after hours trying to go build, go get and similar to get the missing third party packages but no matter what I do I get the same error that is attached.
Just in case you find it useful, the basic structure is the following:
/project-root
├── go.mod
├── cmd/
│ ├── main.go
│ └── other.go
└── other-package/
└── ...
I would really appreciate any help on this.
Thanks in advanced.