27 lines
371 B
Go
27 lines
371 B
Go
|
package routes
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
)
|
||
|
|
||
|
func getDescription(path string) (desc string) {
|
||
|
db, err := os.ReadFile(filepath.Join(path, "description"))
|
||
|
if err == nil {
|
||
|
desc = string(db)
|
||
|
} else {
|
||
|
desc = ""
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func (d *deps) isIgnored(name string) bool {
|
||
|
for _, i := range d.c.Repo.Ignore {
|
||
|
if name == i {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return false
|
||
|
}
|