mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-04-27 07:40:27 -05:00
11 lines
154 B
Go
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
|
|
}
|