пакетами/модулями
Создаю папку college, в ней students.go с package students
перед этим в консоли пишу go mod college
когда делаю: import "college/students" или import "college"
То выдает ошибку
could not import college (missing metadata for import of "college")compilerBrokenImport
could not import college/students (no required module provides package "college/students")compilerBrokenImport
Как исправить?
Напиши нормально структуру: где у тебя что лежит, какие папки, пакеты и т.п.
Desktop/myfile: /college/students.go go.mod main.go
Если я правильно понял, импортируй "myfile/colledge"
1. A module path should describe both what the module does and where to find it. The repository root path is the portion of the module path that corresponds to the root directory of the version control repository where the module is developer Начнём с того, что вы опустили часть именования модуля Во-вторых если у вас main.go, то пакет должен называться main В-третьих непонятно зачем вам импортить main.go
Зачем мне импортить main?
Обсуждают сегодня