mirror of
https://github.com/onyx-and-iris/gignore.git
synced 2025-04-03 04:03:53 +01:00
17 lines
382 B
Go
17 lines
382 B
Go
// Package gignore provides a way to manage .gitignore files and templates.
|
|
package gignore
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
type templateNotFoundError struct {
|
|
template string
|
|
templatesSearched []string
|
|
}
|
|
|
|
func (e *templateNotFoundError) Error() string {
|
|
return fmt.Sprintf("template '%s' not found in %s registry", e.template, strings.Join(e.templatesSearched, ", "))
|
|
}
|