fix dir structure

This commit is contained in:
2025-12-05 20:20:00 +01:00
parent 47c55fae5c
commit 6c97cc439c
15 changed files with 0 additions and 0 deletions

13
io.go Normal file
View File

@@ -0,0 +1,13 @@
package swayipc
import "os"
func fileExists(filename string) bool {
info, err := os.Stat(filename)
if err != nil {
return false
}
return !info.IsDir()
}