I’m installing an external module from Daggerverse. However, when I run an example module in Go code, it returns the error ‘cannot return external type from dependency module’. Do I need to do anything specific to use an external type from a dependency module?
This is the example module that I am using:
func (m *Test) Example(repository string) *DockerImage {
return dag.
Docker().
Cli().
Pull(repository)
}