在golang的这段代码中,我需要设置我的.env,但我在运行中得到了这个错误:
生成时出错:github.com/Valgard/go-pcre:build constraints exclude C:\Users\pc\go\pkg\mod\github.com中的所有Go文件!valgard\ email protected(https://stackoverflow.com/cdn-cgi/l/email-protection)
代码为:
package main
import (
"fmt"
"log"
"github.com/Valgard/godotenv"
"github.com/gin-gonic/gin"
)
func init() {
err := godotenv.Load(".env")
if err != nil {
log.Fatalf("Error loading .env file")
}
}
func main() {
fmt.Println("Hello world")
r := gin.Default()
r.GET("/ping", func(c *gin.Context) {
c.JSON(200, gin.H{
"message": "pong",
})
})
r.Run()
}
我找了很多没有任何溶胶。
1条答案
按热度按时间kr98yfug1#
使用此包:https://github.com/joho/godotenv。
这个包(github.com/Valgard/godotenv)不再使用。