package main
import "syscall"
func main() {
dll := syscall.NewLazyDLL("tdjson.dll")
err := dll.Load()
if err != nil {
panic("E: " + err.Error())
}
println("Success")
}
panic: E: Failed to load tdjson.dll: The specified module could not be found.