alpm_six_test.go 217 B

12345678910111213
  1. // +build six
  2. package ialpm
  3. import (
  4. alpm "github.com/Jguer/go-alpm/v2"
  5. )
  6. func alpmTestGetArch(h *alpm.Handle) ([]string, error) {
  7. architectures, err := h.GetArchitectures()
  8. return architectures.Slice(), err
  9. }