正如标题所问,有什么方法可以从函数内部导入go文件吗?我正在考虑为我的 discordgo( https://pkg.go.dev/github.com/bwmarrin/discordgo ) 程序使用一个循环。
前任 :
package main
import (
...
)
func main() {
client, _ := disocrdgo.New("Bot " + mytoken)
...
events, _ := ioutil.ReadDir("./events")
for event, _ := range events {
x, _ := import "MyApp/src/events/" + event // <---
client.AddHandler(x.executor) // using type struct where executor is the function i want to use from the imported file
}
...
}
我觉得有义务如此精确:感谢您的认真回答。
潇湘沐
相关分类