joao-r-reis commented on PR #1850: URL: https://github.com/apache/cassandra-gocql-driver/pull/1850#issuecomment-2551763132
You still have a public `protocol` package there. Let's just move everything that is private to the `internal` package and everything else stays in the main `gocql` package as it exists today. So 1 single `internal` package that contains stuff that is not exported publically by gocql's interface today and everything else keep unchanged in the `gocql` package. After this we can start thinking about potentially a better organization for the code under `internal` but let's not worry about that yet. The most useful and complex part is splitting the code between these 2 places: "internal" (single `internal` package for now) and "public API" (`gocql` package) -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

