sruehl commented on issue #1089:
URL: https://github.com/apache/plc4x/issues/1089#issuecomment-1698535753
delete the `go.work` and use this main.go:
```golang
package main
import plc4go "github.com/apache/plc4x/plc4go/pkg/api"
func main() {
driverManager := plc4go.NewPlcDriverManager()
println(driverManager)
}
```
It should output this when run with that `go run main.go`:
```
$ go run main.go
{"level":"trace","time":"2023-08-30T07:51:07+02:00","message":"Creating plc
driver manager"}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]