mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
12 lines
316 B
Go
12 lines
316 B
Go
|
package rpm
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
// TimeFormat is the time format used by the rpm ecosystem. The time being
|
||
|
// formatted must be in UTC for Format to generate the correct format.
|
||
|
const TimeFormat = "Mon Jan _2 15:04:05 2006"
|
||
|
|
||
|
func errorf(format string, a ...interface{}) error {
|
||
|
return fmt.Errorf("rpm: "+format, a...)
|
||
|
}
|