aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-01-29 17:52:50 +0900
committerOphestra <cat@gensokyo.uk>2026-01-29 17:52:50 +0900
commitb26bc05bb0c392e52e964061ec598f4487e14f08 (patch)
tree97e2d91c41763ef8253804c6fd7efc144baf5b45 /internal
parent2d63ea8feee3ece4a158da0b1cce5fd7ebc87769 (diff)
internal/rosa: remove unused receiver
This returns the preset itself, it is up to the caller to load the underlying artifact. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal')
-rw-r--r--internal/rosa/all.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/rosa/all.go b/internal/rosa/all.go
index 8bab65ae..72c7e176 100644
--- a/internal/rosa/all.go
+++ b/internal/rosa/all.go
@@ -85,7 +85,7 @@ func (t Toolchain) Load(p PArtifact) pkg.Artifact {
}
// ResolveName returns a [PArtifact] by name.
-func (t Toolchain) ResolveName(name string) (p PArtifact, ok bool) {
+func ResolveName(name string) (p PArtifact, ok bool) {
p, ok = map[string]PArtifact{
"acl": ACL,
"attr": Attr,