This commit is contained in:
Vladimir V Maksimov
2026-02-10 16:08:35 +03:00
parent 1f63c5fbd4
commit 8e1f17a359
9 changed files with 877 additions and 20 deletions

16
stat/fs_stat.go Normal file
View File

@@ -0,0 +1,16 @@
package stat
import (
"time"
"github.com/google/uuid"
)
type FSStat struct {
ID uuid.UUID
Name string
IsDir bool
Created time.Time
LastModified time.Time
OwnerID uuid.UUID
}