feat: loader logic

This commit is contained in:
Ilia Denisov
2026-03-15 21:57:42 +02:00
parent 6179dadb5e
commit cc7ecf6667
5 changed files with 117 additions and 96 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ import (
type Storage interface {
UIStorage
FileExists(string) (bool, error)
FileExists(string) (bool, string, error)
ReadFile(string) ([]byte, error)
WriteFile(string, []byte) error
DeleteFile(string) error