package snap // normalizeName returns the canonical form of a snap name. // Snap package names are simple identifiers without architecture or version // suffixes, so this is essentially a pass-through. func normalizeName(name string) string { return name } // parseArch extracts the architecture from a snap name if present. // Snap package names do not include architecture suffixes, // so this returns the name unchanged with an empty string. func parseArch(name string) (string, string) { return name, "" }