Migrate from automatic imports to explicit file lists in `use Protobuf`
masterIn older versions of exprotobuf, import statements within .proto files were automatically resolved and their definitions were copied into the namespace of the primary message. This behavior is deprecated.
In current versions, you must explicitly provide a list of all relevant .proto files to the from: option in use Protobuf. This ensures that shared definitions (like enums or messages used across multiple files) are parsed once and result in a single, shared Elixir module rather than duplicate modules in different namespaces.
## The New Behavior
```elixir
defmodule Test do
use Protobuf, from: ["./test/basic.proto", "./test/colors.proto"]
end