migrate to codeberg (#1)

This commit is contained in:
T. von Dein
2025-11-10 20:59:46 +01:00
parent d64c1ddcc0
commit 1cde07a07b
33 changed files with 59 additions and 77 deletions

13
io.go
View File

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