Dependencies
If there is no go.mod file create one:
go mod init project
now run the following command to install all dependancies
go mod tidy
The programm should now run:
go run main.go
If there is no go.mod file create one:
go mod init project
now run the following command to install all dependancies
go mod tidy
The programm should now run:
go run main.go