Перейти пакеты не найдены на GitHub

Я устанавливаю сервер соответствия на звездном языке, используя язык go. У меня есть файл go, который требует наличия определенных пакетов перед его сборкой. Когда я пытаюсь получить эти пакеты, используя "go get github.com/stellar/go/clients/federation", это выдает ошибку 404 Страница не найдена.

пакет, который присутствует -> github.com/spf13/cobra

пакет, который не найден -> github.com/stellar/go/clients/federation

Где я могу найти эти пакеты?

мой файл go:

  "github.com/facebookgo/inject"
  "github.com/goji/httpauth"
  "github.com/spf13/cobra"
  "github.com/stellar/go/clients/federation" //not found
  "github.com/stellar/go/clients/stellartoml"
  "github.com/stellar/go/services/compliance/internal/config" // not found
  "github.com/stellar/go/services/compliance/internal/crypto"
  "github.com/stellar/go/services/compliance/internal/db" // not found
  "github.com/stellar/go/services/compliance/internal/handlers" // not found
  supportConfig "github.com/stellar/go/support/config"  //not found
  "github.com/stellar/go/support/db/schema" // not found
  "github.com/stellar/go/support/errors"
  supportHttp "github.com/stellar/go/support/http" //not found

Пакеты с // not found отсутствуют на github, поэтому я не могу получить их используя "go get". Что мне теперь делать?

0 ответов

Другие вопросы по тегам