Move internal/linear to pkg/linear (expose as library) - #47
Merged
Conversation
The linear client, core types, and query helpers were previously under internal/, which Go forbids importing from external modules. Moving them under pkg/linear/ exposes the same code as a public API without changing any signatures. No behavior changes; CLI commands continue to work via the new import path.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
internal/linear/topkg/linear/so external Go modules can import the Linear client, core types, and query helpersMotivation
A separate project (Conductor) needs to depend on this module as a library. With everything under
internal/, that's impossible — Go forbids cross-moduleinternal/imports. Per the user's direction, this exposes the existing packages directly rather than adding a re-export shim.Test plan
go build ./...go vet ./...go test ./...go build ./cmd/linearproduces a working binarypkg/linearmatches the priorinternal/linearAPI