Go语言 从其他目录导入文件

4smxwvx5  于 2023-01-22  发布在  Go
关注(0)|答案(1)|浏览(204)

我正在尝试将utility导入到github_events.go中。
utility.go放在services目录下。
utility.go看起来像这样:

package utility

import (
    "os"
    "regexp"
)

我的项目结构如下所示:

这是从github_events.go导入的方式

import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"sync"
"time"
"sort"

"github-app/services/utility"
)

我也试过用化名utility "github-app/services/utility"
但是我得到了以下错误could not import github-app/services/utility (no required module provides package "github-app/services/utility")compilerBrokenImport
我的go.mod文件:

module github-app
    go 1.18

我哪里做错了?

hgqdbh6s

hgqdbh6s1#

只需要导入“github-app/services”就可以了。

相关问题