mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 09:07:21 +01:00
8916cd174b
* rework relationship between runtime and cfg * separate runtime from cfg * simplify instantiation logic * move installer to appropriate package * move operator to sync package * add tests for srcinfo service * consolidate srcinfo service in sync * add logger to srcinfo * add logger to preparer * remove unused text functions * remove remaining text.* from srcinfo * remove global logger parts * remove global org method exports * remove global logger * move text->input * add rule to prevent fmt.Print * update golangci go version * remove outdated FAQs * remove outdated FAQs
10 lines
163 B
Go
10 lines
163 B
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/leonelquinteros/gotext"
|
|
)
|
|
|
|
var ErrPackagesNotFound = errors.New(gotext.Get("could not find all required packages"))
|