17 lines
220 B
Go
17 lines
220 B
Go
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
|
|
}
|