ExternalImport represents an external module import.
| 33 | |
| 34 | // ExternalImport represents an external module import. |
| 35 | type ExternalImport struct { |
| 36 | path string |
| 37 | isTypeOnly bool |
| 38 | } |
| 39 | |
| 40 | func (e ExternalImport) Path() string { |
| 41 | return e.path |
nothing calls this directly
no outgoing calls
no test coverage detected