feat(main.go): renamed function

This commit is contained in:
Paul Fey 2025-02-27 18:47:16 +01:00
parent ca47bff951
commit 4d3ec3135e
4 changed files with 6 additions and 6 deletions

View file

@ -29,7 +29,7 @@ func list(conn net.Conn, instance string) error {
log.Println(err)
continue
}
if exists, err := exists(info_path); exists && err == nil {
if exists, err := path_exists(info_path); exists && err == nil {
infofile_content, err := os.ReadFile(info_path)
if err != nil {
log.Println(err)