- Fix remaining 187 pkg/ files referencing core/cli → core/go - Move SDK library code from internal/cmd/sdk/ → pkg/sdk/ (new package) - Create pkg/rag/helpers.go with convenience functions from internal/cmd/rag/ - Fix pkg/mcp/tools_rag.go to use pkg/rag instead of internal/cmd/rag - Fix pkg/build/buildcmd/cmd_sdk.go and pkg/release/sdk.go to use pkg/sdk - Remove all non-library content: main.go, internal/, cmd/, docker/, scripts/, tasks/, tools/, .core/, .forgejo/, .woodpecker/, Taskfile.yml - Run go mod tidy to trim unused dependencies core/go is now a pure Go package suite (library only). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Claude <developers@lethean.io> Reviewed-on: #3
36 lines
795 B
Go
36 lines
795 B
Go
package signing
|
|
|
|
import (
|
|
"context"
|
|
|
|
"forge.lthn.ai/core/go/pkg/io"
|
|
)
|
|
|
|
// WindowsSigner signs binaries using Windows signtool (placeholder).
|
|
type WindowsSigner struct {
|
|
config WindowsConfig
|
|
}
|
|
|
|
// Compile-time interface check.
|
|
var _ Signer = (*WindowsSigner)(nil)
|
|
|
|
// NewWindowsSigner creates a new Windows signer.
|
|
func NewWindowsSigner(cfg WindowsConfig) *WindowsSigner {
|
|
return &WindowsSigner{config: cfg}
|
|
}
|
|
|
|
// Name returns "signtool".
|
|
func (s *WindowsSigner) Name() string {
|
|
return "signtool"
|
|
}
|
|
|
|
// Available returns false (not yet implemented).
|
|
func (s *WindowsSigner) Available() bool {
|
|
return false
|
|
}
|
|
|
|
// Sign is a placeholder that does nothing.
|
|
func (s *WindowsSigner) Sign(ctx context.Context, fs io.Medium, binary string) error {
|
|
// TODO: Implement Windows signing
|
|
return nil
|
|
}
|