Files
zeta-reconstructor/internal/arch/binary/frontend.go
T

24 lines
579 B
Go

// Package binary converts Arch Linux binary packages (.pkg.tar.zst) into
// Zeta packages.
package binary
import (
"errors"
"git.spectoria.dev/huntedbytheirs/zeta-reconstruct/internal/registry"
)
// frontend implements registry.Frontend for Arch binary packages.
type frontend struct{}
func (frontend) Name() string { return "arch-binary" }
func (frontend) Convert(input string, opts registry.Options) error {
// Implemented in a later todo (.pkg.tar.zst -> tarball + package.lua).
return errors.New("not implemented")
}
func init() {
registry.Register(frontend{})
}