Files
phylum/server/internal/core/user.go
T
2024-09-17 11:42:14 +05:30

11 lines
154 B
Go

package core
import "github.com/google/uuid"
type User struct {
Username string
DisplayName string
Root uuid.UUID
Home uuid.UUID
}